本文整理匯總了Java中org.biojava3.core.sequence.compound.NucleotideCompound類的典型用法代碼示例。如果您正苦於以下問題:Java NucleotideCompound類的具體用法?Java NucleotideCompound怎麽用?Java NucleotideCompound使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
NucleotideCompound類屬於org.biojava3.core.sequence.compound包,在下文中一共展示了NucleotideCompound類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: filterFastaByLength
import org.biojava3.core.sequence.compound.NucleotideCompound; //導入依賴的package包/類
/**
* Filters a fasta file by length
*
* @param fastaIn the fasta file to filter
* @param fastaOut the filtered fasta file
* @param minLength the minimum contig length to keep
* @throws IOException
* @throws BioException
*/
public void filterFastaByLength(File fastaIn, File fastaOut, int minLength) throws IOException, BioException
{
FileWriter fw = new FileWriter(fastaOut.getAbsoluteFile());
String newLine = System.getProperty("line.separator");
FileInputStream inStream = new FileInputStream(fastaIn);
FastaReader<DNASequence, NucleotideCompound> fastaReader = new FastaReader<>(inStream,
new GenericFastaHeaderParser<DNASequence, NucleotideCompound>(),
new DNASequenceCreator(DNACompoundSet.getDNACompoundSet()));
LinkedHashMap<String, DNASequence> b = fastaReader.process();
for (Entry<String, DNASequence> entry : b.entrySet())
{
//System.out.println(entry.getValue().getOriginalHeader() + "=" + entry.getValue().getSequenceAsString());
if (entry.getValue().getSequenceAsString().length() >= minLength)
{
fw.write(">" + entry.getValue().getOriginalHeader() + newLine + entry.getValue().getSequenceAsString() + newLine);
}
}
fw.close();
}
示例2: compareTwoFastaSequences
import org.biojava3.core.sequence.compound.NucleotideCompound; //導入依賴的package包/類
public Map<String, String[]> compareTwoFastaSequences(File seq1, File seq2) throws Exception
{
HashMap<String, String[]> snps = new HashMap<>();
LinkedHashMap<String, DNASequence> dna1 = FastaReaderHelper.readFastaDNASequence(seq1);
LinkedHashMap<String, DNASequence> dna2 = FastaReaderHelper.readFastaDNASequence(seq2);
for (Entry<String, DNASequence> entry : dna1.entrySet())
{
DNASequence dna1seq = entry.getValue();
//System.out.println(entry.getValue().getOriginalHeader() + "=" + entry.getValue().getSequenceAsString());
if (dna2.containsKey(entry.getValue().getOriginalHeader()))
{
DNASequence dna2seq = dna2.get(dna1seq.getOriginalHeader());
if (dna1seq.getLength() != dna2seq.getLength())
{
System.err.println("Can't compare " + entry.getValue().getOriginalHeader() + " as they are different sizes: " + dna1seq.getLength() + " and " + dna2seq.getLength());
}
else
{
Iterator it1 = dna1seq.iterator();
Iterator it2 = dna2seq.iterator();
int position = 1;
while (it1.hasNext())
{
NucleotideCompound nt1 = (NucleotideCompound) it1.next();
NucleotideCompound nt2 = (NucleotideCompound) it2.next();
//System.out.println("Comparing " +nt1.toString()+ " to "+nt2.toString());
if (!nt1.equalsIgnoreCase(nt2))
{
String loci = dna1seq.getOriginalHeader().concat(":").concat(Integer.toString(position));
System.out.println("Found " + loci + " " + nt1 + " in File 1 and " + nt2 + " in File 2");
String[] snpArray = new String[2];
snpArray[0] = nt1.toString();
snpArray[1] = nt2.toString();
//Arrays.sort(snpArray);
snps.put(loci, snpArray);
}
position++;
}
}
}
}
return snps;
}