Talk:FASTA format: Difference between revisions

From Rosetta Code
Content added Content deleted
(added comments about FASTA file specifications. -- ~~~~)
 
m (→‎FASTA file specifications: added comment about '''VT''' (vertical tabs). -- ~~~~)
Line 7: Line 7:
* lines that end with an asterisk   ['''*''']
* lines that end with an asterisk   ['''*''']
* data lines that contain blanks, tabs, and other whitespace
* data lines that contain blanks, tabs, and other whitespace

<br><br>No attempt was made to format lines with &nbsp; '''VT''' &nbsp; ('''v'''ertical '''t'''abs) &nbsp; which can be used to specify multiple lines in one record.
<br> -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 20:17, 5 April 2013 (UTC)
<br> -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 20:17, 5 April 2013 (UTC)

Revision as of 20:22, 5 April 2013

FASTA file specifications

I didn't know how much of the FASTA file specifications were to be implemented (supported), so for the REXX example (version 2), I took what I could glean from the WIKI article and supported:

  • blank lines
  • lines that start with a semicolon   [;]
  • lines that end with an asterisk   [*]
  • data lines that contain blanks, tabs, and other whitespace



No attempt was made to format lines with   VT   (vertical tabs)   which can be used to specify multiple lines in one record.
-- Gerard Schildberger (talk) 20:17, 5 April 2013 (UTC)