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
        Essential Discoveries and Tools in Epitranscriptomics
        by seqadmin


        The field of epigenetics has traditionally concentrated more on DNA and how changes like methylation and phosphorylation of histones impact gene expression and regulation. However, our increased understanding of RNA modifications and their importance in cellular processes has led to a rise in epitranscriptomics research. “Epitranscriptomics brings together the concepts of epigenetics and gene expression,” explained Adrien Leger, PhD, Principal Research Scientist on Modified Bases...
        Today, 07:01 AM
      • seqadmin
        Current Approaches to Protein Sequencing
        by seqadmin


        Proteins are often described as the workhorses of the cell, and identifying their sequences is key to understanding their role in biological processes and disease. Currently, the most common technique used to determine protein sequences is mass spectrometry. While still a valuable tool, mass spectrometry faces several limitations and requires a highly experienced scientist familiar with the equipment to operate it. Additionally, other proteomic methods, like affinity assays, are constrained...
        04-04-2024, 04:25 PM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by seqadmin, 04-11-2024, 12:08 PM
      0 responses
      37 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 10:19 PM
      0 responses
      40 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-10-2024, 09:21 AM
      0 responses
      35 views
      0 likes
      Last Post seqadmin  
      Started by seqadmin, 04-04-2024, 09:00 AM
      0 responses
      54 views
      0 likes
      Last Post seqadmin  
      Working...
      X