| Trees | Indices | Help |
|---|
|
|
Martel based parser to read SAF formatted files.
This is a huge regular regular expression for SAF, built using
the 'regular expressiona on steroids' capabilities of Martel.
http://www.embl-heidelberg.de/predictprotein/Dexa/optin_safDes.html
Notes:
Just so I remember -- the new end of line syntax is:
New regexp syntax - \R
\R means "
|
?"
[\R] means "[
]"
This helps us have endlines be consistent across platforms.
|
|||
digits =
|
|||
valid_sequence_characters =
|
|||
white_space =
|
|||
valid_residue_characters =
|
|||
residue_number_line = Group("residue_number_line", Rep1(Any(va
|
|||
comment_line = Group("comment_line", Str("#")+ ToEol())
|
|||
ignored_line = Group("ignored_line", Alt(comment_line, residue
|
|||
candidate_line = Group("candidate_line", Assert(Str("#"), 1)+
|
|||
saf_record = Group("saf_record", candidate_line+ Rep(Alt(candi
|
|||
|
|||
valid_sequence_characters
|
residue_number_line
|
ignored_line
|
candidate_line
|
saf_record
|
| Trees | Indices | Help |
|---|
| Generated by Epydoc 3.0.1 on Sun May 3 17:14:12 2009 | http://epydoc.sourceforge.net |