class BiojavaAdamContext extends Serializable with Logging
Extends ADAMContext with load methods for Biojava models.
- Alphabetic
- By Inheritance
- BiojavaAdamContext
- Logging
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
-
new
BiojavaAdamContext(ac: ADAMContext, readConverter: Converter[Fastq, Read], dnaSequenceConverter: Converter[DNASequence, Sequence], dnaSequenceFeaturesConverter: Converter[DNASequence, List[Feature]], proteinSequenceConverter: Converter[ProteinSequence, Sequence], proteinSequenceFeaturesConverter: Converter[ProteinSequence, List[Feature]], rnaSequenceConverter: Converter[RNASequence, Sequence], rnaSequenceFeaturesConverter: Converter[RNASequence, List[Feature]])
- ac
ADAMContext to extend.
- readConverter
Convert Biojava Fastq to bdg-formats Read.
- dnaSequenceConverter
Convert Biojava DNASequence to bdg-formats Sequence.
- dnaSequenceFeaturesConverter
Convert Biojava DNASequence to a list of bdg-formats Features.
- proteinSequenceConverter
Convert Biojava ProteinSequence to bdg-formats Sequence
- proteinSequenceFeaturesConverter
Convert Biojava ProteinSequence to a list of bdg-formats Features
- rnaSequenceConverter
Convert Biojava RNASequence to bdg-formats Sequence
- rnaSequenceFeaturesConverter
Convert Biojava RNASequence to a list of bdg-formats Features
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val ac: ADAMContext
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
def
debug(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
debug(msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
debug(msg: ⇒ Any): Unit
- Attributes
- protected
- Definition Classes
- Logging
- val dnaSequenceConverter: Converter[DNASequence, Sequence]
- val dnaSequenceFeaturesConverter: Converter[DNASequence, List[Feature]]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
error(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
error(msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
error(msg: ⇒ Any): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
info(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
info(msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
info(msg: ⇒ Any): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
isDebugEnabled: Boolean
- Attributes
- protected
- Definition Classes
- Logging
-
def
isErrorEnabled: Boolean
- Attributes
- protected
- Definition Classes
- Logging
-
def
isInfoEnabled: Boolean
- Attributes
- protected
- Definition Classes
- Logging
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isTraceEnabled: Boolean
- Attributes
- protected
- Definition Classes
- Logging
-
def
isWarnEnabled: Boolean
- Attributes
- protected
- Definition Classes
- Logging
-
def
loadBiojavaFastaDna(path: String): SequenceDataset
Load the specified path in FASTA format as DNA sequences with Biojava.
Load the specified path in FASTA format as DNA sequences with Biojava.
- path
path in FASTA format, must not be null
- returns
RDD of DNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaFastaProtein(path: String): SequenceDataset
Load the specified path in FASTA format as protein sequences with Biojava.
Load the specified path in FASTA format as protein sequences with Biojava.
- path
path in FASTA format, must not be null
- returns
RDD of protein sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaFastaRna(path: String): SequenceDataset
Load the specified path in FASTA format as RNA sequences with Biojava.
Load the specified path in FASTA format as RNA sequences with Biojava.
- path
path in FASTA format, must not be null
- returns
RDD of RNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaFastqReads(path: String): ReadDataset
Load the specified path in FASTQ format as reads with Biojava.
Load the specified path in FASTQ format as reads with Biojava.
- path
path in FASTQ format, must not be null
- returns
RDD of reads
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaGenbankDna(path: String): SequenceDataset
Load the specified path in Genbank format as DNA sequences with Biojava.
Load the specified path in Genbank format as DNA sequences with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of DNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaGenbankDnaFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as DNA sequence features with Biojava.
Load the specified path in Genbank format as DNA sequence features with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of DNA sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
loadBiojavaGenbankProtein(path: String): SequenceDataset
Load the specified path in Genbank format as protein sequences with Biojava.
Load the specified path in Genbank format as protein sequences with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of protein sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaGenbankProteinFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as protein sequence features with Biojava.
Load the specified path in Genbank format as protein sequence features with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of protein sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
loadBiojavaGenbankRna(path: String): SequenceDataset
Load the specified path in Genbank format as RNA sequences with Biojava.
Load the specified path in Genbank format as RNA sequences with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of RNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadBiojavaGenbankRnaFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as RNA sequence features with Biojava.
Load the specified path in Genbank format as RNA sequence features with Biojava.
- path
path in Genbank format, must not be null
- returns
RDD of RNA sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
loadFastqReads(path: String): ReadDataset
Load the specified path in FASTQ format as reads with Biojava.
Load the specified path in FASTQ format as reads with Biojava. Alias for
loadBiojavaFastqReads.- path
path in FASTQ format, must not be null
- returns
RDD of reads
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadGenbankDna(path: String): SequenceDataset
Load the specified path in Genbank format as DNA sequences with Biojava.
Load the specified path in Genbank format as DNA sequences with Biojava. Alias for
loadBiojavaGenbankDna.- path
path in Genbank format, must not be null
- returns
RDD of DNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadGenbankDnaFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as DNA sequence features with Biojava.
Load the specified path in Genbank format as DNA sequence features with Biojava. Alias for
loadBiojavaGenbankDnaFeatures.- path
path in Genbank format, must not be null
- returns
RDD of DNA sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
loadGenbankProtein(path: String): SequenceDataset
Load the specified path in Genbank format as protein sequences with Biojava.
Load the specified path in Genbank format as protein sequences with Biojava. Alias for
loadBiojavaGenbankProtein.- path
path in Genbank format, must not be null
- returns
RDD of protein sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadGenbankProteinFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as protein sequence features with Biojava.
Load the specified path in Genbank format as protein sequence features with Biojava. Alias for
loadBiojavaGenbankProteinFeatures.- path
path in Genbank format, must not be null
- returns
RDD of protein sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
loadGenbankRna(path: String): SequenceDataset
Load the specified path in Genbank format as RNA sequences with Biojava.
Load the specified path in Genbank format as RNA sequences with Biojava. Alias for
loadBiojavaGenbankRna.- path
path in Genbank format, must not be null
- returns
RDD of RNA sequences
- Exceptions thrown
IOExceptionif an I/O error occurs
-
def
loadGenbankRnaFeatures(path: String): FeatureDataset
Load the specified path in Genbank format as RNA sequence features with Biojava.
Load the specified path in Genbank format as RNA sequence features with Biojava. Alias for
loadBiojavaGenbankRnaFeatures.- path
path in Genbank format, must not be null
- returns
RDD of RNA sequence features
- Exceptions thrown
Exceptionif an I/O error occurs
-
def
logger: Logger
- Attributes
- protected
- Definition Classes
- Logging
-
def
loggerName: String
- Attributes
- protected
- Definition Classes
- Logging
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val proteinSequenceConverter: Converter[ProteinSequence, Sequence]
- val proteinSequenceFeaturesConverter: Converter[ProteinSequence, List[Feature]]
- val readConverter: Converter[Fastq, Read]
- val rnaSequenceConverter: Converter[RNASequence, Sequence]
- val rnaSequenceFeaturesConverter: Converter[RNASequence, List[Feature]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
trace(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
trace(msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
trace(msg: ⇒ Any): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
warn(mkr: Marker, msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
warn(msg: ⇒ Any, t: ⇒ Throwable): Unit
- Attributes
- protected
- Definition Classes
- Logging
-
def
warn(msg: ⇒ Any): Unit
- Attributes
- protected
- Definition Classes
- Logging
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated @deprecated
- Deprecated
(Since version ) see corresponding Javadoc for more information.