Package | Description |
---|---|
org.biojava.nbio.data.sequence |
Set of classes that responsible for data handling.
|
org.biojava.nbio.ronn |
BioJava provide a module biojava-protein-disorder for prediction disordered regions
from a protein sequence.
|
Modifier and Type | Method and Description |
---|---|
static List<FastaSequence> |
SequenceUtil.readFasta(InputStream inStream)
Reads fasta sequences from inStream into the list of FastaSequence
objects
|
Modifier and Type | Method and Description |
---|---|
int |
FastaSequence.compareTo(FastaSequence o) |
static boolean |
SequenceUtil.isNucleotideSequence(FastaSequence s) |
Modifier and Type | Method and Description |
---|---|
static void |
SequenceUtil.writeFasta(OutputStream os,
List<FastaSequence> sequences)
Writes FastaSequence in the file, each sequence will take one line only
|
static void |
SequenceUtil.writeFasta(OutputStream outstream,
List<FastaSequence> sequences,
int width)
Writes list of FastaSequeces into the outstream formatting the sequence
so that it contains width chars on each line
|
Modifier and Type | Method and Description |
---|---|
static FastaSequence |
Jronn.convertProteinSequencetoFasta(ProteinSequence sequence)
Utility method to convert a BioJava ProteinSequence object to the FastaSequence
object used internally in JRonn.
|
Modifier and Type | Method and Description |
---|---|
static Map<FastaSequence,Jronn.Range[]> |
Jronn.getDisorder(List<FastaSequence> sequences)
Calculates the disordered regions of the sequence for many sequences in the input.
|
static Map<FastaSequence,Jronn.Range[]> |
Jronn.getDisorder(String fastaFile)
Calculates the disordered regions of the protein sequence.
|
static Map<FastaSequence,float[]> |
Jronn.getDisorderScores(List<FastaSequence> sequences)
Calculates the probability of disorder scores for each residue in the sequence for
many sequences in the input.
|
Modifier and Type | Method and Description |
---|---|
static Jronn.Range[] |
Jronn.getDisorder(FastaSequence sequence)
Calculates the disordered regions of the sequence.
|
static float[] |
Jronn.getDisorderScores(FastaSequence sequence)
Calculates the probability value for each residue in the protein sequence,
telling the probability that the residue belongs to disordered region.
|
Modifier and Type | Method and Description |
---|---|
static Map<FastaSequence,Jronn.Range[]> |
Jronn.getDisorder(List<FastaSequence> sequences)
Calculates the disordered regions of the sequence for many sequences in the input.
|
static Map<FastaSequence,float[]> |
Jronn.getDisorderScores(List<FastaSequence> sequences)
Calculates the probability of disorder scores for each residue in the sequence for
many sequences in the input.
|
Copyright © 2000–2019 BioJava. All rights reserved.