Open Thananonsr opened 2 months ago
Hi @Thananonsr , please make sure you are running CIRI2 & CIRI-AS with paired, untrimmed reads.
Hi @Thananonsr , please make sure you are running CIRI2 & CIRI-AS with paired, untrimmed reads.
Of course, I have been running CIRI2 & CIRI-AS with paired-end trimmed reads.
Yes, that's the problem. CIRI-AS cannot handle reads with different lengths after trimming, so could you try to use untrimmed reads to instread?
Yes, that's the problem. CIRI-AS cannot handle reads with different lengths after trimming, so could you try to use untrimmed reads to instread?
You means use the raw data as a input?
You means use the raw data as a input?
Yes, only raw data is supported.
Thank you, sir. But now I have been running the same step in another dataset (e.g. GSE147009 *RNA-seq data) with raw data. However, the raw data from this database has already had the adapters removed from all samples (24 samples). When I ran the following command: perl CIRI_AS_v1.2.pl \ -S /home/storeone/sirinar/thananon/SRR11310298/SRR11310298.sam \ -C /home/storeone/sirinar/thananon/SRR11310298/SRR11310298.ciri \ -F bwa.index_hg38.fa/hg38.fa \ -A gencode.v46.annotation.gtf \ -O /home/storeone/sirinar/thananon/SRR11310298 \ -D yes I reencountered the same issue: 'Please make sure the SAM is the same one used for circRNA detection by CIRI without modification!'
Q: Do you have any suggestions for this issue? I need help since I can't find this database with untrimmed adapters.
And here are all the steps in my analysis:
I followed the above steps for circRNA analysis per sample, and the resulting data is in GTF format.
--> I’m wondering if it's necessary to run all the steps from 5-9. I’ve already obtained circRNA data from step 5, but I’m unable to run step 6. Q: 1. Can I take the circRNA data from step 5 and skip directly to step 9? Or would this negatively affect the circRNA data output?****
Thank you, sir. But now I have been running the same step in another dataset (e.g. GSE147009 *RNA-seq data) with raw data. However, the raw data from this database has already had the adapters removed from all samples (24 samples). When I ran the following command: perl CIRI_AS_v1.2.pl -S /home/storeone/sirinar/thananon/SRR11310298/SRR11310298.sam -C /home/storeone/sirinar/thananon/SRR11310298/SRR11310298.ciri -F bwa.index_hg38.fa/hg38.fa -A gencode.v46.annotation.gtf -O /home/storeone/sirinar/thananon/SRR11310298 -D yes I reencountered the same issue: 'Please make sure the SAM is the same one used for circRNA detection by CIRI without modification!'
Q: Do you have any suggestions for this issue? I need help since I can't find this database with untrimmed adapters.
Hi @Thananonsr, you can trim the reads to a uniform length (e.g. 75/100bp) to run CIRI-full.
Hi everyone Currently, I am analyzing circRNAs from an RNA-Seq dataset using CIRI2 tools, following the steps outlined in the CIRI-cookbook. Here's how I have proceeded:
perl CIRI2.pl -I trimmed_sample.sam -O sample/trimmed_sample.ciri -F bwa.index_hg38.fa/hg38.fa -A knownGene.gtf
perl CIRI_AS_v1.2.pl -S trimmed_sample.sam -C sample/trimmed_sample.ciri -F bwa.index_hg38.fa/hg38.fa -A knownGene.gtf -O sample/output -D yes
However, I encountered an issue when I ran the last command. It failed with the error message: "Please make sure the SAM is the same one used for circRNA detection by CIRI without modification!"
My question is:
Thank you