enasequence / cramtools

CRAM format specification and java API for read data.
http://www.ebi.ac.uk/ena/about/cram_toolkit
Apache License 2.0
58 stars 21 forks source link

fastq for paired-end sequencing #49

Open vcaropr1 opened 8 years ago

vcaropr1 commented 8 years ago

I am trying to create fastq file(s) for each respective read group within the cram file. There should be a total of 4 different files instead of the 1 large fastq file that has been made. Are there any special parameters that need to be added if this is possible through cramtools?

java -jar cramtools-3.0.jar \ fastq \ -I cram_file.cram \ -R ref_genome \

vadimzalunin commented 8 years ago

in the current implementation cramtools does not split data by read group. I've opened an issue: https://github.com/enasequence/cramtools/issues/50

vcaropr1 commented 8 years ago

Thanks!