public class SplitSequenceAnnotationParser extends Object implements SequenceAnnotationParser
SequenceAnnotationParser which simply splits the comments by specific delimiters.| Modifier and Type | Field and Description |
|---|---|
protected LinkedList<SequenceAnnotation> |
annot
The internal list of current
SequenceAnnotations. |
protected String |
annotationDelimiter
The delimiter between different annotations
|
protected String |
keyValueDelimiter
The delimiter between key and value
|
| Constructor and Description |
|---|
SplitSequenceAnnotationParser()
Creates a new
SplitSequenceAnnotationParser with specific delimiters, i.e., key value
delimiter "=" and annotation delimiter ";". |
SplitSequenceAnnotationParser(String keyValueDelimiter,
String annotationDelimiter)
Creates a new
SplitSequenceAnnotationParser with user-specified delimiters. |
| Modifier and Type | Method and Description |
|---|---|
protected void |
add(String type,
String identifier)
This method actually adds a
SequenceAnnotation to the internal list. |
void |
addToAnnotation(String unparsed)
|
void |
clearAnnotation()
This method reset the current
SequenceAnnotation. |
SequenceAnnotation[] |
getCurrentAnnotation()
This method returns the current
SequenceAnnotation. |
String |
parseAnnotationToComment(char commentChar,
SequenceAnnotation... annotations)
This method returns a
String representation of the given
SequenceAnnotations that can be used as comment line in a file. |
protected String keyValueDelimiter
protected String annotationDelimiter
protected LinkedList<SequenceAnnotation> annot
SequenceAnnotations.public SplitSequenceAnnotationParser()
SplitSequenceAnnotationParser with specific delimiters, i.e., key value
delimiter "=" and annotation delimiter ";".public SplitSequenceAnnotationParser(String keyValueDelimiter, String annotationDelimiter)
SplitSequenceAnnotationParser with user-specified delimiters.keyValueDelimiter - the delimiter between key and corresponding valueannotationDelimiter - the delimiter between different SequenceAnnotationsIllegalArgumentException - if the delimiters are identicalpublic void addToAnnotation(String unparsed)
SequenceAnnotationParseraddToAnnotation in interface SequenceAnnotationParserunparsed - the String containing the annotationprotected void add(String type, String identifier)
SequenceAnnotation to the internal list.type - the type of the SequenceAnnotationidentifier - the identifier of the SequenceAnnotationpublic void clearAnnotation()
SequenceAnnotationParserSequenceAnnotation.clearAnnotation in interface SequenceAnnotationParserpublic SequenceAnnotation[] getCurrentAnnotation()
SequenceAnnotationParserSequenceAnnotation.getCurrentAnnotation in interface SequenceAnnotationParserSequenceAnnotationpublic String parseAnnotationToComment(char commentChar, SequenceAnnotation... annotations)
SequenceAnnotationParserString representation of the given
SequenceAnnotations that can be used as comment line in a file.
SequenceAnnotationParser.addToAnnotation(String).parseAnnotationToComment in interface SequenceAnnotationParsercommentChar - the char at the beginning of comment linesannotations - the SequenceAnnotations to be parsedSequenceAnnotationsDataSet.save(java.io.OutputStream, char, SequenceAnnotationParser)