1 /* Copyright (c) 2011 Peter Troshin
\r
3 * JAva Bioinformatics Analysis Web Services (JABAWS) @version: 2.0
\r
5 * This library is free software; you can redistribute it and/or modify it under the terms of the
\r
6 * Apache License version 2 as published by the Apache Software Foundation
\r
8 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
\r
9 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache
\r
10 * License for more details.
\r
12 * A copy of the license is in apache_license.txt. It is also available here:
\r
13 * @see: http://www.apache.org/licenses/LICENSE-2.0.txt
\r
15 * Any republication or derived work distributed in source code form
\r
16 * must include this copyright and license notice.
\r
18 package compbio.data.sequence;
\r
20 import java.io.File;
\r
21 import java.io.FileNotFoundException;
\r
22 import java.io.InputStream;
\r
23 import java.util.Iterator;
\r
24 import java.util.Scanner;
\r
26 import compbio.util.Util;
\r
29 * Reads files with FASTA formatted sequences. All the information in the FASTA
\r
30 * header is preserved including trailing white spaces. All the white spaces are
\r
31 * removed from the sequence.
\r
33 * Examples of the correct input:
\r
38 * GCQDKNNIAELNEIMGTTRSPSDWQHMKGASPRAEIGLTGKKDSWWRHCCSKEFNKTPPPIHPDMKRWGWMWNRENFEKFLIDNFLNPPCPRLMLTKGTWWRHEDLCHEIFWSTLRWLCLGNQSFSAMIWGHLCECHRMIWWESNEHMFWLKFRRALKKMNSNGPCMGPDNREWMITNRMGKEFCGPAFAGDCQSCWRKCHKTNKICFNEKKGTPTKIDHEQKDIMDILKDIDNHRNWKQCQLWLLTSKSTDQESTTMLTWSTWRDFFIIIKQPFDHKCRGALDANGDFQIAAELKWPAPMIILRQNQKTMHDKSCHHFFTNRCPLMHTTRANDKQCSWHTRKQFICQQDFTTWQHRPDTHRILPSWCMSTRRKNHIKNTPALAFSTCEMGDLPNGWAPGTIILQRQFTQAIKLPQETTGWPRCDPKFDHWNMSKWLRQLLGRDDEMIPPQCD
\r
41 * CPLSKWWNRRAFLSHTANHWMILMTWEGPHDGESKMRIAMMKWSPCKPTMSHFRCGLDAWAEPIRQIACESTFRM
\r
42 * FCTTPRPIHKLTEMWGHMNGWTGAFCRQLECEWMMPPRHPHPCTSTFNNNKKRLIGQIPNEGKQLFINFQKPQHG
\r
43 * FSESDIWIWKDNPTAWHEGLTIAGIGDGQHCWNWMPMPWSGAPTSNALIEFWTWLGMIGTRCKTQGMWWDAMNHH
\r
44 * DQFELSANAHIAAHHMEKKMILKPDDRNLGDDTWMPPGKIWMRMFAKNTNACWPEGCRDDNEEDDCGTHNLHRMC
\r
47 * CGCKIF D D NMKDNNRHG TDIKKHGFMH IRHPE KRDDC FDNHCIMPKHRRWGLWD
\r
48 * EASINM AQQWRSLPPSRIMKLNG HGCDCMHSHMEAD DTKQSGIKGTFWNG HDAQWLCRWG
\r
49 * EFITEA WWGRWGAITFFHAH ENKNEIQECSDQNLKE SRTTCEIID TCHLFTRHLDGW
\r
50 * RCEKCQANATHMTW ACTKSCAEQW FCAKELMMN
\r
51 * W KQMGWRCKIFRKLFRDNCWID FELPWWPICFCCKGLSTKSHSAHDGDQCRRW WPDCARDWLGPGIRGEF
\r
52 * FCTHICQQLQRNFWCGCFRWNIEKRMFEIFDDNMAAHWKKCMHFKFLIRIHRHGPITMKMTWCRSGCCFGKTRRLPDSSFISAFLDPKHHRDGSGMMMWSSEMRSCAIPDPQQAWNQGKWIGQIKDWNICFAWPIRENQQCWATPHEMPSGFHFILEKWDALAHPHMHIRQKKCWAWAFLSLMSSTHSDMATFQWAIPGHNIWSNWDNIICGWPRI
\r
54 * > 12 d t y wi k jbke
\r
58 * HSKCTEPHCGNSHQMLHRDP
\r
59 * CCDQCQSWEAENWCASMRKAILF
\r
63 * @author Peter Troshin
\r
64 * @version 1.0 April 2011
\r
67 public class FastaReader implements Iterator<FastaSequence> {
\r
69 private final Scanner input;
\r
72 * Header data can contain non-ASCII symbols and read in UTF8
\r
75 * the file containing the list of FASTA formatted sequences to
\r
77 * @throws FileNotFoundException
\r
78 * if the input file is not found
\r
79 * @throws IllegalStateException
\r
80 * if the close method was called on this instance
\r
83 public FastaReader(final String inputFile) throws FileNotFoundException {
\r
84 input = new Scanner(new File(inputFile), "UTF8");
\r
85 input.useDelimiter("\\s*>");
\r
86 Runtime.getRuntime().addShutdownHook(new Thread() {
\r
90 if (input != null) {
\r
98 * This class will not close the incoming stream! So the client should do
\r
101 * @param inputStream
\r
102 * @throws FileNotFoundException
\r
104 public FastaReader(final InputStream inputStream)
\r
105 throws FileNotFoundException {
\r
106 input = new Scanner(inputStream);
\r
107 input.useDelimiter("\\s*>");
\r
112 * @throws IllegalStateException
\r
113 * if the close method was called on this instance
\r
116 public boolean hasNext() {
\r
117 return input.hasNext();
\r
121 * Reads the next FastaSequence from the input
\r
123 * @throws AssertionError
\r
124 * if the header or the sequence is missing
\r
125 * @throws IllegalStateException
\r
126 * if the close method was called on this instance
\r
129 public FastaSequence next() {
\r
130 return FastaReader.toFastaSequence(input.next());
\r
137 public void remove() {
\r
138 throw new UnsupportedOperationException();
\r
142 * Call this method to close the connection to the input file if you want to
\r
143 * free up the resources. The connection will be closed on the JVM shutdown
\r
144 * if this method was not called explicitly. No further reading on this
\r
145 * instance of the FastaReader will be possible after calling this method.
\r
147 public void close() {
\r
151 private static FastaSequence toFastaSequence(final String singleFastaEntry) {
\r
153 assert !Util.isEmpty(singleFastaEntry) : "Empty String where FASTA sequence is expected!";
\r
155 int nlineidx = singleFastaEntry.indexOf("\n");
\r
156 if (nlineidx < 0) {
\r
157 throw new AssertionError(
\r
158 "The FASTA sequence must contain the header information"
\r
159 + " separated by the new line from the sequence. Given sequence does not appear to "
\r
160 + "contain the header! Given data:\n "
\r
161 + singleFastaEntry);
\r
163 String header = singleFastaEntry.substring(0, nlineidx);
\r
165 // Get rid of the new line chars (should cover common cases)
\r
166 header = header.replaceAll("\r", "");
\r
168 String sequence = singleFastaEntry.substring(nlineidx);
\r
170 if (Util.isEmpty(sequence)) {
\r
171 throw new AssertionError(
\r
172 "Empty sequences are not allowed! Please make sure the "
\r
173 + " data is in the FASTA format! Given data:\n "
\r
174 + singleFastaEntry);
\r
176 return new FastaSequence(header, sequence);
\r