Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • staszekdh
    Junior Member
    • Dec 2018
    • 2

    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
  • staszekdh
    Junior Member
    • Dec 2018
    • 2

    #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

    • ashishbansal
      Member
      • Dec 2018
      • 17

      #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

      • SEQadmin2
        Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
        by SEQadmin2



        Genomics studies in neuroscience face a special challenge due to the brain’s complexity and scarcity of samples. Mapping changes in cell type and state using conventional next-generation sequencing methods remains challenging. Advances in technologies like single-cell sequencing, spatial transcriptomics, and long-read sequencing have opened the door to deeper studies of the brain and diseases like Alzheimer’s, amyotrophic lateral sclerosis (ALS), and schizophrenia.
        ...
        07-09-2026, 11:10 AM
      • SEQadmin2
        Cancer Drug Resistance: The Lingering Barrier to Rising Survival
        by SEQadmin2



        Cancer survival rates have significantly increased in the last few decades in the United States, reaching a combined 70% 5-year survival rate by 2021. Behind this number, there are years of research to find new therapies, drug targets, and early detection methods. But there is one core challenge that keeps slowing down these advances, and it’s about drug resistance.

        There is no single reason why many patients don’t respond to treatment as expected. Cancer is...
        07-08-2026, 05:17 AM
      • GATTACAT
        Reply to Nine Things a Sample Prep Scientist Thinks About Before Sequencing
        by GATTACAT
        Love this - good data definitely starts from good input, and poor input can only give relatively poor data. I particularly like the mention of Nanodrop/absorbance based methods for quantification. It's such a toss up if you'll get an accurate reading or what amounts to a randomly generated number, and a lot of library/sequencing related issues can be traced back to poor quant.
        07-01-2026, 11:43 AM

      ad_right_rmr

      Collapse

      News

      Collapse

      Topics Statistics Last Post
      Started by SEQadmin2, Yesterday, 10:26 AM
      0 responses
      13 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-09-2026, 10:04 AM
      0 responses
      26 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-08-2026, 10:08 AM
      0 responses
      16 views
      0 reactions
      Last Post SEQadmin2  
      Started by SEQadmin2, 07-07-2026, 11:05 AM
      0 responses
      33 views
      0 reactions
      Last Post SEQadmin2  
      Working...