Hello Biostars folks,
Do you know any tools that can quantify gene expression from aligned CRAM files in RNASeq? In the past I used featureCounts but it doesn't accept CRAM file. I am trying to quantify gene expression from the CRAM files downloaded from the Hartwig Medical Foundation cohort. Converting CRAM to BAM and then using featureCounts works but this takes a lot of storage space.
Thank you!
Wenbin
EDIT: Never mind, in a previous answer, you stated that the .bai file is not required. Process substitution might work here, saving OP some storage space at the cost of slower computation - unless featureCounts has a problem with streaming BAMs.
Can featureCounts work with
<(samtools view -b file.cram)
or does it need an actual indexed BAM file?Thanks ATpoint. I tried HTSeq but it's much slower than featurecounts. I guess I have no choice but using cram2bam