Skip to content

Commit

Permalink
Fix regression test to write codons again
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed Oct 11, 2016
1 parent 2123215 commit 5605809
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
3 changes: 1 addition & 2 deletions features/codon-feature.rb
Expand Up @@ -35,7 +35,7 @@
# Writing is actually handles by a different library
fasta = FastaWriter.new('test/data/regression/nt-aln.fa')
@aln.rows.each do | row |
fasta.write(row)
fasta.write(row.id, row.to_s)
end
end

Expand All @@ -45,4 +45,3 @@
fasta.write(row.id, row.to_aa.to_s)
end
end

0 comments on commit 5605809

Please sign in to comment.