Seqanswers Leaderboard Ad

Collapse

Announcement

Collapse
No announcement yet.
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • cufflinks does not understand strands?

    Dear All,

    I used STAR to map paired-end reads onto the reference genome:

    Code:
    ~/apps/STAR/bin/Linux_x86_64/STAR --runMode alignReads \
    				  --runThreadN 10 \
    				  --genomeDir ../../../genome/GCA_..../ \
    				  --readFilesIn R1.fastq R2.fastq \
    				  --outFilterIntronMotifs RemoveNoncanonical \
    				  --outSAMattrIHstart 0 \
    				  --alignIntronMax 1 \
    				  --alignMatesGapMax 200 \
    				  --outFileNamePrefix ./out/ \
    				  --limitBAMsortRAM 1048477838 \
    				  --peOverlapNbasesMin 0 \
    				  --quantMode GeneCounts \
    The mapping looks good:



    Note that reads are colored according to the "first-of-pair strand" rule.

    The next step is reference-guided transcripts reconstruction. To this end, I tried to use cufflinks, but without success:

    Code:
    ~/apps/cufflinks-2.2.1.Linux_x86_64/cufflinks -o ./out/ \
    					      -p 10 \
    					      --library-type fr-firststrand \
    					      -g ../../../genome/GCA_XXX/GCA_XXX.gff \
    					      ../star/out_mock_rep2_clean/Aligned.sortedByCoord.out.bam
    First, I got a weird warning:

    Code:
    Warning: Using default Gaussian distribution due to insufficient paired-end reads in open ranges.  It is recommended that correct parameters (--frag-len-mean and --frag-len-std-dev) be provided.
    Second, the predicted transcripts look odd. For example, the two genes (gene0 and gene1 - see image above) were merged into a single transcript, despite they have the opposite orientation!

    I would appreciate some hints on that.

    Best wishes,
    Staszek

  • #2
    Problem solved. I used HISAT2 with "--rna-strandness RF" + stringtie and now I get reasonable results.

    HISAT2:

    Code:
    $HISAT2_HOME/hisat2 -q \
                    -p 10 \
                    -x ../../../genome/genome/XX \
                    -1 ../B1R_S1_R1_001.clean.fastq \
                    -2 ../B1R_S1_R2_001.clean.fastq \
                    -S out_mock_rep1_clean/alns.sam \
                    --fr \
                    --rna-strandness RF \
                    --dta
    stringtie:

    Code:
    ~/apps/stringtie-1.3.5.Linux_x86_64/stringtie \
    	../hisat/out_mock_rep1_clean/alns.sorted.bam \
    	-o ./out_mock_rep1_clean/out.gtf \
    	-p 10 \
    	--fr \
            -G ../../../genome/xxx.gff
    BTW: I found this post useful

    Comment


    • #3
      Tophat/Cufflinks are not for assembly, they are for alignment to an already assembled genome or transcriptome. What are you aligning your reads to? Also, if you have strand specific data, you shouldn't choose an unstranded library type. You should choose the proper one based on your library preparation method. The XS tag will only be placed on split reads if you choose an unstranded library type.
      Clinical Research

      Comment

      Latest Articles

      Collapse

      • seqadmin
        Techniques and Challenges in Conservation Genomics
        by seqadmin



        The field of conservation genomics centers on applying genomics technologies in support of conservation efforts and the preservation of biodiversity. This article features interviews with two researchers who showcase their innovative work and highlight the current state and future of conservation genomics.

        Avian Conservation
        Matthew DeSaix, a recent doctoral graduate from Kristen Ruegg’s lab at The University of Colorado, shared that most of his research...
        03-08-2024, 10:41 AM
      • seqadmin
        The Impact of AI in Genomic Medicine
        by seqadmin



        Artificial intelligence (AI) has evolved from a futuristic vision to a mainstream technology, highlighted by the introduction of tools like OpenAI's ChatGPT and Google's Gemini. In recent years, AI has become increasingly integrated into the field of genomics. This integration has enabled new scientific discoveries while simultaneously raising important ethical questions1. Interviews with two researchers at the center of this intersection provide insightful perspectives into...
        02-26-2024, 02:07 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 03-14-2024, 06:13 AM
      0 responses
      33 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 03-08-2024, 08:03 AM
      0 responses
      72 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 03-07-2024, 08:13 AM
      0 responses
      80 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 03-06-2024, 09:51 AM
      0 responses
      68 views
      0 likes
      Last Post seqadmin  
      Working...
      X