Thank you for your reply.
I'm new to sequencing and I've currently got several FASTQ files containing data corresponding to sequencing experiments (sequenced using Illumina miseq).
I was hoping to carry out some expression analysis (with edgeR, probably) using this data, but I'll need to generate a counts matrix from this data. Could somebody provide some instruction on how to generate counts data from a FASTQ file?
2 answers
You will have to first align those fastq files against the reference genome and produce SAM/BAM files.Tophat, STAR and many other splice aware RNA-seq aligners are available for this task. It is always good to preprocess your read data including QC, trimming off the low quality bases etc.
Then you need to use some tool that will generate count data for you. Basically you will have to provide the aligned BAM file and the gene annotation file (gff3, gtf,bed format) for your reference genome. HTSeq, Cufflinks are some tools available for this task. Search "Biostar" and you will get names of other tools.
Thanks for the link.
Log in to answer this question.