Entering edit mode
6.2 years ago
Sam
▴
150
Dear All
I used star to align the PE lib with this command and then I converted sam file to bam and sorted it with samtools but after running the cufflinks I got "Warning: Skipping large bundle" how I can fix it ?
Thanks
STAR --runThreadN 12 --genomeDir /genome_index_star -sjdbGTFfile /genome_index/Egene_exons.gtf --readFilesIn R1.fastq,R2.fastq --outFileNamePrefix test --outSAMstrandField intronMotif
cufflinks -o cufflink_out_gtf -g ./Egene_exons.gtf test_Aligned.out_sorted.bam
Try to increase the
--max-bundle-length
in cufflinks command, try 10000000similar error
cufflinks options
but I tried also(the same lib ) with Tophat2 and Hisat2 and cufflinks worked well without any warning and error. should I change any flag in the star to be compatible with cufflinks?
In STAR manual
I would say also that what you got is just a warning not an error
Thanks for your help, but with this warning, the processing time of cufflinks increased at least 10 times.
Did you try the
--max-bundle-length
and the--outFilterIntronMotifs RemoveNoncanonical
?