Package org.biojavax.bio.seq.io
Class EMBLFormat
java.lang.Object
org.biojavax.bio.seq.io.RichSequenceFormat.BasicFormat
org.biojavax.bio.seq.io.RichSequenceFormat.HeaderlessFormat
org.biojavax.bio.seq.io.EMBLFormat
- All Implemented Interfaces:
SequenceFormat,RichSequenceFormat
Format reader for EMBL files. This version of EMBL format will generate
and write RichSequence objects. Loosely Based on code from the old, deprecated,
org.biojava.bio.seq.io.EmblLikeFormat object.
This format will read both Pre-87 and 87+ versions of EMBL. It will also write
them both. By default, it will write the most recent version. If you want
an earlier one, you must specify the format by passing one of the constants
defined in this class to writeSequence(Sequence, String, Namespace).
- Since:
- 1.5
- Author:
- Richard Holland, Jolyon Holdstock, Mark Schreiber
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classImplements some EMBL-specific terms.Nested classes/interfaces inherited from interface org.biojavax.bio.seq.io.RichSequenceFormat
RichSequenceFormat.BasicFormat, RichSequenceFormat.HeaderlessFormat -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Patternprotected static final Stringprotected static final Stringprotected static final Patternstatic final StringThe name of the current formatstatic final StringThe name of the Pre-87 formatprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Patternprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Patternprotected static final Patternprotected static final Stringprotected static final Stringprotected static final Patternprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Patternprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Stringprotected static final Pattern -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanRead(BufferedInputStream stream) Check to see if a given stream is in our format.booleanCheck to see if a given file is in our format.getDefaultFormatreturns the String identifier for the default sub-format written by aSequenceFormatimplementation.On the assumption that the stream is readable by this format (not checked), attempt to guess which symbol tokenization we should use to read it.guessSymbolTokenization(File file) On the assumption that the file is readable by this format (not checked), attempt to guess which symbol tokenization we should use to read it.booleanreadRichSequence(BufferedReader reader, SymbolTokenization symParser, RichSeqIOListener rlistener, Namespace ns) Reads a sequence from the given buffered reader using the given tokenizer to parse sequence symbols.booleanreadSequence(BufferedReader reader, SymbolTokenization symParser, SeqIOListener listener) Read a sequence and pass data on to a SeqIOListener.voidwriteSequence(Sequence seq, PrintStream os) writeSequencewrites a sequence to the specified PrintStream, using the default format.voidwriteSequence(Sequence seq, String format, PrintStream os) writeSequencewrites a sequence to the specifiedPrintStream, using the specified format.voidwriteSequence(Sequence seq, String format, Namespace ns) As perwriteSequence(Sequence, Namespace), except that it also takes a format parameter.voidwriteSequence(Sequence seq, Namespace ns) Writes a sequence out to the outputstream given by beginWriting() using the default format of the implementing class.Methods inherited from class org.biojavax.bio.seq.io.RichSequenceFormat.HeaderlessFormat
beginWriting, finishWritingMethods inherited from class org.biojavax.bio.seq.io.RichSequenceFormat.BasicFormat
getElideComments, getElideFeatures, getElideReferences, getElideSymbols, getLineWidth, getPrintStream, setElideComments, setElideFeatures, setElideReferences, setElideSymbols, setLineWidth, setPrintStream
-
Field Details
-
EMBL_PRE87_FORMAT
The name of the Pre-87 format- See Also:
-
EMBL_FORMAT
The name of the current format- See Also:
-
LOCUS_TAG
- See Also:
-
ACCESSION_TAG
- See Also:
-
VERSION_TAG
- See Also:
-
DEFINITION_TAG
- See Also:
-
DATE_TAG
- See Also:
-
DATABASE_XREF_TAG
- See Also:
-
SOURCE_TAG
- See Also:
-
ORGANISM_TAG
- See Also:
-
ORGANELLE_TAG
- See Also:
-
REFERENCE_TAG
- See Also:
-
REFERENCE_POSITION_TAG
- See Also:
-
REFERENCE_XREF_TAG
- See Also:
-
AUTHORS_TAG
- See Also:
-
CONSORTIUM_TAG
- See Also:
-
TITLE_TAG
- See Also:
-
LOCATOR_TAG
- See Also:
-
REMARK_TAG
- See Also:
-
KEYWORDS_TAG
- See Also:
-
COMMENT_TAG
- See Also:
-
FEATURE_HEADER_TAG
- See Also:
-
FEATURE_TAG
- See Also:
-
CONTIG_TAG
- See Also:
-
TPA_TAG
- See Also:
-
START_SEQUENCE_TAG
- See Also:
-
DELIMITER_TAG
- See Also:
-
END_SEQUENCE_TAG
- See Also:
-
dp
-
lp
-
lpPre87
-
vp
-
rpp
-
dbxp
-
readableFileNames
-
headerLine
-
-
Constructor Details
-
EMBLFormat
public EMBLFormat()
-
-
Method Details
-
canRead
Check to see if a given file is in our format. Some formats may be able to determine this by filename, whilst others may have to open the file and read it to see what format it is in. A file is in EMBL format if its name contains the word eem or edat, or the first line matches the EMBL format for the ID line.- Specified by:
canReadin interfaceRichSequenceFormat- Overrides:
canReadin classRichSequenceFormat.BasicFormat- Parameters:
file- theFileto check.- Returns:
- true if the file is readable by this format, false if not.
- Throws:
IOException- in case the file is inaccessible.
-
guessSymbolTokenization
On the assumption that the file is readable by this format (not checked), attempt to guess which symbol tokenization we should use to read it. For formats that only accept one tokenization, just return it without checking the file. For formats that accept multiple tokenizations, its up to you how you do it. Always returns a DNA tokenizer.- Specified by:
guessSymbolTokenizationin interfaceRichSequenceFormat- Overrides:
guessSymbolTokenizationin classRichSequenceFormat.BasicFormat- Parameters:
file- theFileobject to guess the format of.- Returns:
- a
SymbolTokenizationto read the file with. - Throws:
IOException- if the file is unrecognisable or inaccessible.
-
canRead
Check to see if a given stream is in our format. A stream is in EMBL format if its first line matches the EMBL format for the ID line.- Parameters:
stream- theBufferedInputStreamto check.- Returns:
- true if the stream is readable by this format, false if not.
- Throws:
IOException- in case the stream is inaccessible.
-
guessSymbolTokenization
On the assumption that the stream is readable by this format (not checked), attempt to guess which symbol tokenization we should use to read it. For formats that only accept one tokenization, just return it without checking the stream. For formats that accept multiple tokenizations, its up to you how you do it. Always returns a DNA tokenizer.- Parameters:
stream- theBufferedInputStreamobject to guess the format of.- Returns:
- a
SymbolTokenizationto read the stream with. - Throws:
IOException- if the stream is unrecognisable or inaccessible.
-
readSequence
public boolean readSequence(BufferedReader reader, SymbolTokenization symParser, SeqIOListener listener) throws IllegalSymbolException, IOException, ParseException Read a sequence and pass data on to a SeqIOListener.- Parameters:
reader- The stream of data to parse.symParser- A SymbolParser defining a mapping from character data to Symbols.listener- A listener to notify when data is extracted from the stream.- Returns:
- a boolean indicating whether or not the stream contains any more sequences.
- Throws:
IllegalSymbolException- if it is not possible to translate character data from the stream into valid BioJava symbols.IOException- if an error occurs while reading from the stream.ParseException
-
readRichSequence
public boolean readRichSequence(BufferedReader reader, SymbolTokenization symParser, RichSeqIOListener rlistener, Namespace ns) throws IllegalSymbolException, IOException, ParseException Reads a sequence from the given buffered reader using the given tokenizer to parse sequence symbols. Events are passed to the listener, and the namespace used for sequences read is the one given. If the namespace is null, then the default namespace for the parser is used, which may depend on individual implementations of this interface.- Parameters:
reader- the input sourcesymParser- the tokenizer which understands the sequence being readrlistener- the listener to send sequence events tons- the namespace to read sequences into.- Returns:
- true if there is more to read after this, false otherwise.
- Throws:
IllegalSymbolException- if the tokenizer couldn't understand one of the sequence symbols in the file.IOException- if there was a read error.ParseException
-
writeSequence
writeSequencewrites a sequence to the specified PrintStream, using the default format.- Parameters:
seq- the sequence to write out.os- the printstream to write to.- Throws:
IOException
-
writeSequence
writeSequencewrites a sequence to the specifiedPrintStream, using the specified format.- Parameters:
seq- aSequenceto write out.format- aStringindicating which sub-format of those available from a particularSequenceFormatimplemention to use when writing.os- aPrintStreamobject.- Throws:
IOException- if an error occurs.
-
writeSequence
Writes a sequence out to the outputstream given by beginWriting() using the default format of the implementing class. If namespace is given, sequences will be written with that namespace, otherwise they will be written with the default namespace of the implementing class (which is usually the namespace of the sequence itself). If you pass this method a sequence which is not a RichSequence, it will attempt to convert it using RichSequence.Tools.enrich(). Obviously this is not going to guarantee a perfect conversion, so it's better if you just use RichSequences to start with! Namespace is ignored as EMBL has no concept of it.- Parameters:
seq- the sequence to writens- the namespace to write it with- Throws:
IOException- in case it couldn't write something
-
writeSequence
As perwriteSequence(Sequence, Namespace), except that it also takes a format parameter. This can be any of the formats defined as constants in this class.- Parameters:
seq- seewriteSequence(Sequence, Namespace)format- the format to use.ns- seewriteSequence(Sequence, Namespace)- Throws:
IOException- seewriteSequence(Sequence, Namespace)
-
getDefaultFormat
getDefaultFormatreturns the String identifier for the default sub-format written by aSequenceFormatimplementation.- Returns:
- a
String.
-