-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-a option #41
Comments
What about the quality figure? |
I tried running ribotish quality with the same custom gtf and it returned 0 counted reads. for file in "input_dir"/*; do I generated the bam file with star based on the custom gtf. do I have to align to the transcriptome? |
There's no need to align to the transcriptome. Genome alignment is required. |
The quality step generates/updates .para.py files, which were used in predict step. Try run predict again. |
Were the para files of all TI-Seq bams updated? It seems that you are using multiple bam files. |
I am currently running singular bam files just as a test. Still getting that error. ribotish predict -b ${out_dir}/STAR_output_TE_Onlys/MC38VehCHX_S1_R1_001_ATCGTAligned.sortedByCoord.out.bam -t ${out_dir}/STAR_output_TE_Onlys/MC38vehLTM_S3_R1_001_ATCGTAligned.sortedByCoord.out.bam -f |
There's no -a gtf input. |
I was modifying some command line parameters, but it returns the same error with parameter -a with the known protein coding annotation. -g custom_GTF -a gencode_GTF: This fails -g gencode_GTF -a custom_GTF: This succeeds. does this imply that the number of reads mapping to features in the custom_GTF is too small? Also, the run successfully finishes if I run with riboseq data only with the --longest parameter. Why might this be the case? |
The -g is the genes to predict translation, while the -a genes are known coding genes only for TIS background estimation. |
I find the problem. It is a bug. If you used numProc > 1, the -a gtf would actually not be used. The bug is fixed in the latest commit. |
Hello,
I have a custom stringtie derived GTFs that I am trying to predict ORFs from.
I am also inputting the primary assembly gene annotations from gencode with option -a
ribotish predict -b file1,2,3 -t file4,5,6 -a gencode.gtf -g custom.gtf -f $reference_assembly -o output.txt -v --seq --inframecount --altcodons ATG,CTG,GTG,TTG,ACG --minaalen 7
do you have an idea of why I might still encounter this error?
The text was updated successfully, but these errors were encountered: