zhpn1024 / ribotish

Ribo-seq TIS Hunter, predicting translation initiation sites and ORFs using riboseq data
http://dx.doi.org/10.1038/s41467-017-01981-8
GNU General Public License v3.0
27 stars 8 forks source link

-a option #41

Open bshim181 opened 1 week ago

bshim181 commented 1 week ago

Hello,

I have a custom stringtie derived GTFs that I am trying to predict ORFs from.

Screenshot 2024-11-25 at 11 11 09 AM

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?

zhpn1024 commented 1 week ago

What about the quality figure?

bshim181 commented 3 hours ago

I tried running ribotish quality with the same custom gtf and it returned 0 counted reads.

for file in "input_dir"/*; do file_name=$(basename "$file" .fastq) STAR --runThreadN 16 \ --genomeDir custom_gtf_index \ --readFilesIn ${file} \ --outFilterMismatchNmax 2 \ --outFilterMultimapNmax 10 \ --outFilterMismatchNoverLmax 0.04 \ --alignIntronMin 20 \ --alignIntronMax 100000 \ --quantMode TranscriptomeSAM GeneCounts \ --alignSJDBoverhangMin 1 \ --outSAMattributes All \ --outSAMtype BAM SortedByCoordinate \ --sjdbGTFfile custom_gtf \ --outFileNamePrefix out_file done

I generated the bam file with star based on the custom gtf. do I have to align to the transcriptome?