Unconfigured Ad

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • frymor
    Senior Member
    • May 2010
    • 151

    #61
    Hi,

    I was wondering if there is a typo in the script here:
    Code:
    awk '$3!="*"' untreated1.fa|wc -l
    wc -l untreated1.fa
    Did you mean to check the sam file? (untreated1.sam)
    How can you see in the fastA file how many reads were aligned?

    Thanks

    Comment

    • yqxiong
      Junior Member
      • Nov 2009
      • 1

      #62
      Thanks for the nice tutorial

      I was looking for such a tutorial for some time. I got it now. Thanks a lot!

      Comment

      • caoyh
        Junior Member
        • Mar 2012
        • 1

        #63
        Thanks very much.
        This is the right tutorial for me..

        Comment

        • himanshu04
          Member
          • Mar 2012
          • 35

          #64
          Hey everyone,
          I am new to NGS and I was trying the DE analysis of Di Arabidopsis pathogen data as mentioned in the tutorial. I followed every step and in the end I got the count of significant genes to be 169. I wanted to know how do I get the file that describes all the significant genes?. Any help will be much appreciated since I am still in the learning phase.
          Thanks in advance,
          Himanshu.

          Comment

          • lilletine
            Junior Member
            • Jan 2012
            • 7

            #65
            Thank you for the very nice tutorial, and also for guiding me to the 'how-to-wiki'!!

            Comment

            • rna_follower
              Junior Member
              • Apr 2012
              • 2

              #66
              Hi,

              I am trying to install miRanalyzer stand alone version. I have built the database and managed to download all required tools and packages. When I tried to run it with the test data provided, I get this message: "Failed to load Main-Class manifest attribute from miRanalyzer.jar
              ". Just wondering what I am doing wrong

              Comment

              • Ajayi Oyeyemi
                Member
                • Jul 2012
                • 30

                #67
                the seven fasta files by Li et al., 2008

                Can anyone help me in giving a link on the seven fasta files by Li et al 2008 used in the RNA-seq tutorial posted just of recent?

                Comment

                • Gateway
                  Junior Member
                  • Jul 2012
                  • 1

                  #68
                  Hi

                  When making Exon Junction libraries, you suggest to use Make Splice Junction Fasta (USeq software package). I've read on their web page that it's depreciated and Make Transcriptome (USeq's package as well) should be used instead.

                  Make Transcriptome gives 2 outputs; transcripts and splices. I guess I shall use only splices file in further step(s). Am I right?

                  Comment

                  • Ajayi Oyeyemi
                    Member
                    • Jul 2012
                    • 30

                    #69
                    Hi,
                    I'm very new to RNA sequencing analysis and I've been using Trapnell et al., 2012 protocol as a guide. I've succesfully downloaded the softwares including the fruitfly genome in "my_rna_seq" directory as advised and I try as much as possible to move files extracted in the Downloads to this directory so that I can have everything in the above mentioned directory.
                    The challenge came when I wanted to align my RNA-seq reads to the reference genome. After the first command, all I got was an error indicating that "Could not find Bowtie index files C1_R1_1.fq.*" I'm faced with this error monster and I just need a clue to find this monster.
                    I have the following files in my folder:
                    bowtie-0.12.8
                    bowtie-0.12.8-linux-x86_64.zip
                    C1_R1_thout
                    C1_R1_thout--library-type=fr-firststrand genome
                    d_melanogaster_fb5_22.1.ebwt
                    d_melanogaster_fb5_22.2.ebwt
                    d_melanogaster_fb5_22.3.ebwt
                    d_melanogaster_fb5_22.4.ebwt
                    d_melanogaster_fb5_22.ebwt.zip
                    d_melanogaster_fb5_22.rev.1.ebwt
                    d_melanogaster_fb5_22.rev.2.ebwt
                    Drosophila_melanogaster
                    Drosophila_melanogaster_Ensembl_BDGP5.25.tar.gz
                    Ensem
                    genes.gtf
                    genome.*.
                    GSE32038_simulated_fastq_files.tar.gz
                    GSM794483_C1_R1_1.fq.gz
                    GSM794483_C1_R1_2.fq.gz
                    GSM794484_C1_R2_1.fq.gz
                    GSM794484_C1_R2_2.fq.gz
                    GSM794485_C1_R3_1.fq.gz
                    GSM794485_C1_R3_2.fq.gz
                    GSM794486_C2_R1_1.fq.gz
                    GSM794486_C2_R1_2.fq.gz
                    GSM794487_C2_R2_1.fq.gz
                    GSM794487_C2_R2_2.fq.gz
                    GSM794488_C2_R3_1.fq.gz
                    GSM794488_C2_R3_2.fq.gz
                    make_d_melanogaster_fb5_22.sh
                    README.txt
                    tophat_out

                    and I used this command:
                    tophat -p 8 -G genes.gtf -o C1_R1_thout--library-type=fr-firststrand\ genome C1_R1_1.fq C1_R1_2.fq

                    Thanks.

                    Comment

                    • hanifk
                      Member
                      • Oct 2010
                      • 18

                      #70
                      I am not familiar with tophat, but I have been using bowtie.

                      Before the mapping process of bowtie, it should index the reference genome using the command such as:
                      bowtie-build hg19.fasta hg19
                      then six files (hg19.1.ebwt, hg19.2.ebwt, hg19.3.ebwt, hg19.4.ebwt, hg19.rev.1.ebwt, and hg19.rev.2.ebwt) will be generated.

                      During the process of mapping, bowtie searched the short reads(usually *.fq) again those six indexed files.

                      I think the index process and mapping process have been automated by tophat.

                      In your question, it reports "Couldn't find index files C1_R1_1.fq.* ".
                      I guess the reference genome should be d_melanogaster_fb5_22

                      did you forget to specify the reference genome in your command?
                      tophat -p 8 -G genes.gtf -o C1_R1_thout--library-type=fr-firststrand\ genome C1_R1_1.fq C1_R1_2.fq

                      hope can help you



                      Originally posted by Ajayi Oyeyemi View Post
                      Hi,
                      I'm very new to RNA sequencing analysis and I've been using Trapnell et al., 2012 protocol as a guide. I've succesfully downloaded the softwares including the fruitfly genome in "my_rna_seq" directory as advised and I try as much as possible to move files extracted in the Downloads to this directory so that I can have everything in the above mentioned directory.
                      The challenge came when I wanted to align my RNA-seq reads to the reference genome. After the first command, all I got was an error indicating that "Could not find Bowtie index files C1_R1_1.fq.*" I'm faced with this error monster and I just need a clue to find this monster.
                      I have the following files in my folder:
                      bowtie-0.12.8
                      bowtie-0.12.8-linux-x86_64.zip
                      C1_R1_thout
                      C1_R1_thout--library-type=fr-firststrand genome
                      d_melanogaster_fb5_22.1.ebwt
                      d_melanogaster_fb5_22.2.ebwt
                      d_melanogaster_fb5_22.3.ebwt
                      d_melanogaster_fb5_22.4.ebwt
                      d_melanogaster_fb5_22.ebwt.zip
                      d_melanogaster_fb5_22.rev.1.ebwt
                      d_melanogaster_fb5_22.rev.2.ebwt
                      Drosophila_melanogaster
                      Drosophila_melanogaster_Ensembl_BDGP5.25.tar.gz
                      Ensem
                      genes.gtf
                      genome.*.
                      GSE32038_simulated_fastq_files.tar.gz
                      GSM794483_C1_R1_1.fq.gz
                      GSM794483_C1_R1_2.fq.gz
                      GSM794484_C1_R2_1.fq.gz
                      GSM794484_C1_R2_2.fq.gz
                      GSM794485_C1_R3_1.fq.gz
                      GSM794485_C1_R3_2.fq.gz
                      GSM794486_C2_R1_1.fq.gz
                      GSM794486_C2_R1_2.fq.gz
                      GSM794487_C2_R2_1.fq.gz
                      GSM794487_C2_R2_2.fq.gz
                      GSM794488_C2_R3_1.fq.gz
                      GSM794488_C2_R3_2.fq.gz
                      make_d_melanogaster_fb5_22.sh
                      README.txt
                      tophat_out

                      and I used this command:
                      tophat -p 8 -G genes.gtf -o C1_R1_thout--library-type=fr-firststrand\ genome C1_R1_1.fq C1_R1_2.fq

                      Thanks.

                      Comment

                      • BobbyKing
                        Junior Member
                        • Jul 2013
                        • 2

                        #71
                        I have put together a tutorial website with four core tutorials on it, RNA-Seq, ChIP-Seq, Genome assembly, and SNP calling that may be of use to you.

                        This website was created to share bioinformatics tutorials and create a dynamic learning environment that does not become dated, PDF contributions welcome and there are four core tutorials available. We would be interested to get some feedback.

                        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, 07-13-2026, 10:26 AM
                        0 responses
                        18 views
                        0 reactions
                        Last Post SEQadmin2  
                        Started by SEQadmin2, 07-09-2026, 10:04 AM
                        0 responses
                        30 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
                        34 views
                        0 reactions
                        Last Post SEQadmin2  
                        Working...