If you use -c
-C output a file with reference transcripts that are covered by reads
And gets
WARNING: no reference transcripts were found for the genomic sequences where reads were mapped!
It literaly means that you reads have mapped to regions without annotated transcripts. Be sure you are using the correct annotation. column 3 = Transcript
are you looking for isoforms? read about transcript assembly with stringtie, or isoform detection, once detected or assembled you can extract the sequences and align them.
Hi buffo,
I have run the strigtie and got the assembled transcripts.next i want to fetch the transcripts sequences from all six sample .how can I do?
you can use gff_read to do that
Hi Buffo,
1 GTF file containing the assembled transcripts 2 Gene abundances in tab-delimited format 3 Fully covered transcripts that match the reference annotation, in GTF format 4 Files required as input to Ballgown 5 a merged GTF file from a set of GTF files. I did not use the gff_read tool. I have read the manual of it but did not understand. Can you please set the command for me. The command given in manual is gffread -w transcripts.fa -g /path/to/genome.fa transcripts.gtf
In this command i did not understand which genomic file and transcripts.fa file I have to use.
Hi Buffo,
I have run the stringtie tool and five files have been generated.
I did not use the gff_read tool. I have read the manual of it but did not understand. Can you please set the command for me. The command given in manual is
gffread -w transcripts.fa -g /path/to/genome.fa transcripts.gtfIn this command i did not understand which genomic file and transcripts.fa file I have to use.
The
-woption refers to the output file name,-gneeds the genome reference (you use it to map your reads) and the file transcripts.gtf is the option 1 of the above list (1 GTF file containing the assembled transcripts).Hi buffo, I have genrated the sequence file (transcript.fa). this file contain sequence ids like
Here i have write the id of first sequence in file. My gene of interest id is TraesCS3D02G273600. I want to do extract this id sequence from the file i have generated (transcript.fa) .Kindly tell me how can i extract the sequence of transcript of gene of interest. I
Hi buffo , please reply me
If you are looking for a single gene, type in the shell prompt:
It looks for the specific gene id in the transcript.fa file and shows the first line after the gene id, which is the sequence of the transcript.
Hi buffo , this command grep -A 1 'gene_id' transcript.fa display only one line of sequence , i want to extract the full length of gene sequence
Hi Buffo, Thank you.I have the gene sequences now.but these are the same sequence as present in database. After sequence alignment i did not any variation in six samples of target gene. why it is same?
load your bam files in IGV and check if that gene has SNPs among samples. That sequence is the same because the genome reference is exactly the same.