README.md in parse_fasta-1.1.2 vs README.md in parse_fasta-1.2.0
- old
+ new
@@ -30,10 +30,12 @@
[parse_fasta docs](http://rubydoc.info/gems/parse_fasta/1.1.0/frames)
to see the full documentation.
## Usage ##
+Some examples...
+
A little script to print header and length of each record.
require 'parse_fasta'
FastaFile.open(ARGV.first, 'r').each_record do |header, sequence|
@@ -51,9 +53,20 @@
FastqFile.open(ARGV.first, 'r').each_record do |head, seq, desc, qual|
puts [header, seq, desc, qual.qual_scores.join(',')].join("\t")
end
## Versions ##
+
+### 1.2.0 ###
+
+Added `mean_qual` method to the `Quality` class.
+
+### 1.1.2 ###
+
+Dropped Ruby requirement to 1.9.3
+
+(Note, if you want to build the docs with yard and you're using
+Ruby 1.9.3, you may have to install the redcarpet gem.)
### 1.1.0 ###
Added: Fastq and Quality classes