1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
package stream;
import java.util.ArrayList;
import dna.Data;
import fileIO.ByteFile;
import fileIO.ByteFile1;
import fileIO.FileFormat;
import shared.Shared;
/**
* @author Brian Bushnell
* @date June 1, 2016
*
*/
public class HeaderInputStream extends ReadInputStream {
public static void main(String[] args){
HeaderInputStream his=new HeaderInputStream(args[0], true);
Read r=his.next();
System.out.println(r.toText(false));
his.close();
}
public HeaderInputStream(String fname, boolean allowSubprocess_){
this(FileFormat.testInput(fname, FileFormat.FASTQ, null, allowSubprocess_, false));
}
public HeaderInputStream(FileFormat ff){
if(verbose){System.err.println("FastqReadInputStream("+ff+")");}
stdin=ff.stdio();
tf=new ByteFile1(ff);
}
@Override
public void start() {}
@Override
public boolean hasMore() {
if(buffer==null || next>=buffer.size()){
if(tf.isOpen()){
fillBuffer();
}else{
assert(generated>0) : "Was the file empty?";
}
}
return (buffer!=null && next<buffer.size());
}
@Override
public Read next() {
if(!hasMore()){return null;}
Read r=buffer.set(next, null);
next++;
consumed++;
return r;
}
@Override
public synchronized ArrayList<Read> nextList() {
if(next!=0){throw new RuntimeException("'next' should not be used when doing blockwise access.");}
if(buffer==null || next>=buffer.size()){fillBuffer();}
ArrayList<Read> list=buffer;
buffer=null;
if(list!=null && list.size()==0){list=null;}
consumed+=(list==null ? 0 : list.size());
return list;
}
private synchronized void fillBuffer(){
assert(buffer==null || next>=buffer.size());
buffer=null;
next=0;
buffer=toReadList(tf, BUF_LEN, nextReadID);
int bsize=(buffer==null ? 0 : buffer.size());
nextReadID+=bsize;
if(bsize<BUF_LEN){tf.close();}
generated+=bsize;
if(buffer==null){
if(!errorState){
errorState=true;
System.err.println("Null buffer in FastqReadInputStream.");
}
}
}
@Override
public boolean close(){
if(verbose){System.err.println("Closing "+this.getClass().getName()+" for "+tf.name()+"; errorState="+errorState);}
errorState|=tf.close();
if(verbose){System.err.println("Closed "+this.getClass().getName()+" for "+tf.name()+"; errorState="+errorState);}
return errorState;
}
@Override
public synchronized void restart() {
generated=0;
consumed=0;
next=0;
nextReadID=0;
buffer=null;
tf.reset();
}
public static ArrayList<Read> toReadList(ByteFile tf, int maxReadsToReturn, long numericID){
byte[] line=null;
ArrayList<Read> list=new ArrayList<Read>(Data.min(8192, maxReadsToReturn));
int added=0;
// Read prev=null;
for(line=tf.nextLine(); line!=null && added<maxReadsToReturn; line=tf.nextLine()){
Read r=new Read(null, null, new String(line), numericID);
// if(interleaved){
// if(prev==null){prev=r;}
// else{
// prev.mate=r;
// r.mate=prev;
// r.setPairnum(1);
// list.add(prev);
// added++;
// numericID++;
// prev=null;
// }
// }else
{
list.add(r);
added++;
numericID++;
}
if(added>=maxReadsToReturn){break;}
}
assert(list.size()<=maxReadsToReturn);
return list;
}
@Override
public String fname(){return tf.name();}
@Override
public boolean paired() {return false;}
/** Return true if this stream has detected an error */
@Override
public boolean errorState(){return errorState;}
private ArrayList<Read> buffer=null;
private int next=0;
private final ByteFile tf;
// private final boolean interleaved;
private final int BUF_LEN=Shared.bufferLen();;
public long generated=0;
public long consumed=0;
private long nextReadID=0;
public final boolean stdin;
public static boolean verbose=false;
}
|