Hello,
I could not find any examples how to read or write fastq files. 

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import org.biojava.bio.program.fastq.FastqReader;

public class Fastq2Fasta {
  public static void main(String[] args) throws FileNotFoundException  {
    BufferedReader br = new BufferedReader(new FileReader("fastq2fasta.fasta"));
  }
}

Are there any examples how to work with fastq files?

Thank you in advance.

Best regards,
_______________________________________________
Biojava-l mailing list  -  [email protected]
http://lists.open-bio.org/mailman/listinfo/biojava-l

Reply via email to