Unconfigured Ad

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts
  • ronton
    Member
    • Jun 2014
    • 34

    The apt-get is nice since it installs into PATH. Thank you again.

    Comment

    • simonandrews
      Simon Andrews
      • May 2009
      • 870

      Originally posted by ronton View Post
      The apt-get is nice since it installs into PATH. Thank you again.
      If you want that from the manual install then you can just create a symlink in /usr/local/bin/ to wherever you installed fastqc, ie:

      Code:
      cd /usr/local/bin/
      sudo ln -s /wherever/you/put/fastqc/fastqc .

      Comment

      • ronton
        Member
        • Jun 2014
        • 34

        I used sudo apt-get remove fastqc to uninstall the older version, and then used the commands above to create a link within /usr/local/bin to the /FastQC directory. This works.

        However, when I attempt to execute the command 'fastqc' elsewhere, I receive this error:

        The program 'fastqc' is currently not installed. You can install it by typing:
        sudo apt-get install fastqc

        If I go to the directory /FastQC or the symlinked directory /usr/local/bin/FastQC and type './fastqc' I receive the following message:

        bash: ./fastqc: Permission denied

        If I type 'perl fastqc' the interactive version loads perfectly, but I can only type this command from the /FastQC folder.

        Something about permissions perhaps, I am not exactly sure, but I appreciate your help. I can still use the newest version which is what's important.

        Comment

        • GenoMax
          Senior Member
          • Feb 2008
          • 7142

          You may need to add execute permissions to the fastqc link and/or original executable. You can start by

          Code:
          $ sudo chmod u+x /usr/local/bin/fastqc
          If that alone does not work then add the execute permission to the original location where the fastqc program is by substituting that path in the above command.

          FastQC is a Java program. "perl fastqc" is probably ignoring first part of the command and running fastqc. Note to self. Think before posting, late on a friday.
          Last edited by GenoMax; 08-15-2014, 01:40 PM.

          Comment

          • ronton
            Member
            • Jun 2014
            • 34

            Those did not seem to work, I don't know. The script fastqc is a perl script that runs the java command.

            I did put in a bug tracker request to update apt-get.

            Comment

            • GenoMax
              Senior Member
              • Feb 2008
              • 7142

              Perhaps you need to adjust the location of your system perl in the FastQC script. Can you check if the current setting agrees with what you have ($ which perl)?

              Comment

              • Fernas
                Member
                • Apr 2013
                • 74

                Hi All,

                How to cite FASTQC in my journal paper? is it published somewhere? or we just refer to the URL of the tool?

                Regards,

                Comment

                • simonandrews
                  Simon Andrews
                  • May 2009
                  • 870

                  Originally posted by ronton View Post
                  I used sudo apt-get remove fastqc to uninstall the older version, and then used the commands above to create a link within /usr/local/bin to the /FastQC directory. This works.

                  However, when I attempt to execute the command 'fastqc' elsewhere, I receive this error:

                  The program 'fastqc' is currently not installed. You can install it by typing:
                  sudo apt-get install fastqc
                  OK, there's one, and possibly two things to sort out.

                  Firstly the permissions on the fastqc launch script aren't right and will need to be set so that it's executable. This might be everything you need to do.

                  To fix this move to the directory where you unzipped the FastQC installation and run the following command:

                  chmod 755 fastqc

                  ..then try running fastqc again and see if it works.

                  The other issue you might have is that there is a stub for fastqc installed by your OS which is being found before the symlink you created. If fastqc isn't working after the first fix can you run:

                  which fastqc

                  ..hopefully this should point to /usr/local/bin/fastqc, but if it doesn't can you post the location it gives, along with the results of:

                  echo $PATH

                  Comment

                  • simonandrews
                    Simon Andrews
                    • May 2009
                    • 870

                    Originally posted by Fernas View Post
                    How to cite FASTQC in my journal paper? is it published somewhere? or we just refer to the URL of the tool?
                    Just cite the project URL. We keep having good intentions to put out a paper, but it keeps not happening...

                    Comment

                    • TimK
                      Member
                      • Jul 2014
                      • 13

                      Hi all,

                      I recently tried the new FastQC version and it's a great tool. My problem is I used it on RNA-Seq expression data and the resulting graphs look different from what I expected reading the manual and tutorials.

                      This is one of my experiment samples after adapter trimming and processing. Especially the per base sequence content and per sequence GC content look wrong for me. Does anyone have an idea what might be the reason for those graphs? The sequence duplication graph is also weird but I guess that's due to expression bias of genes. Could the other graphs also be caused by those?

                      Thanks and keep up the nice work
                      Tim

                      Comment

                      • simonandrews
                        Simon Andrews
                        • May 2009
                        • 870

                        Originally posted by TimK View Post
                        Hi all,

                        I recently tried the new FastQC version and it's a great tool. My problem is I used it on RNA-Seq expression data and the resulting graphs look different from what I expected reading the manual and tutorials.

                        This is one of my experiment samples after adapter trimming and processing. Especially the per base sequence content and per sequence GC content look wrong for me. Does anyone have an idea what might be the reason for those graphs? The sequence duplication graph is also weird but I guess that's due to expression bias of genes. Could the other graphs also be caused by those?

                        Thanks and keep up the nice work
                        Tim
                        Hi Tim - Yes, there's definitely something odd going on in that sample. It looks like there are a couple of specific sources of contamination. Having blasted the top hits in your overrepresented sequences list you get a hit to Methylmicrobium sp which might indicate that there's bacterial contamination (unless this is where the library comes from to start with?), otherwise you could be having problems with rRNA or other high abundance RNAs. The duplication graphs always look bad for RNA-Seq so that's not an issue, but the GC and base composition plots shouldn't look like that.

                        Simon.

                        Comment

                        • simonandrews
                          Simon Andrews
                          • May 2009
                          • 870

                          Actually - the duplication also looks wrong. You expect a lot of high level duplication, but the scoop upwards in the 10k+ category isn't normally there, so that would fit with a high content contaminant.

                          Comment

                          • TimK
                            Member
                            • Jul 2014
                            • 13

                            Hi Simon,

                            thank you very much for the fast answer. The sample actually is a bacterial sample form a close relative of the blast result. I also guessed contamination but all reads I checked so far seem to come almost exclusively from the library organism. Then I thought about rRNA but not only should that have been removed before sequencing but I also used to remove remaining rRNA with sortMeRNA. That's why I'm a little lost atm.

                            But thanks for the effort. Will have to search for other contaminants then.
                            Cheers,
                            Tim

                            Comment

                            • ronton
                              Member
                              • Jun 2014
                              • 34

                              Originally posted by simonandrews View Post
                              OK, there's one, and possibly two things to sort out.

                              Firstly the permissions on the fastqc launch script aren't right and will need to be set so that it's executable. This might be everything you need to do.

                              To fix this move to the directory where you unzipped the FastQC installation and run the following command:

                              chmod 755 fastqc

                              ..then try running fastqc again and see if it works.

                              The other issue you might have is that there is a stub for fastqc installed by your OS which is being found before the symlink you created. If fastqc isn't working after the first fix can you run:

                              which fastqc

                              ..hopefully this should point to /usr/local/bin/fastqc, but if it doesn't can you post the location it gives, along with the results of:

                              echo $PATH
                              I tried chmod 755 fastqc (and using sudo before it) and I get the same result.

                              'which fastqc' does not return anything, with or without sudo before.

                              echo $PATH returns

                              /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

                              In the meanwhile I can use the interactive version of FastQC rather than command line, or I can also use apt-get install fastqc to use the command line with a previous version until the bug tracker updates to the latest version.

                              Comment

                              • simonandrews
                                Simon Andrews
                                • May 2009
                                • 870

                                Originally posted by ronton View Post
                                I tried chmod 755 fastqc (and using sudo before it) and I get the same result.

                                'which fastqc' does not return anything, with or without sudo before.

                                echo $PATH returns

                                /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games

                                In the meanwhile I can use the interactive version of FastQC rather than command line, or I can also use apt-get install fastqc to use the command line with a previous version until the bug tracker updates to the latest version.
                                Sorry for the slow repsonse - just got back from holiday.

                                It looks like the apt-get suggestions are happening at a higher level than the shell, so the fix will simply be to install the version of fastqc you installed into your path. Assuming you installed fastqc in /FastQC (as you said above) then the commands you'd need would be:

                                cd /usr/local/bin
                                sudo ln -s /FastQC/fastqc .

                                You'll be asked to enter your password after the second command. Also note that the second command needs the trailing dot at the end of the command. This should then allow you to run fastqc from everywhere. After you've run it you will need to close and re-open your shell before it takes effect.

                                Comment

                                Latest Articles

                                Collapse

                                • mylaser
                                  Reply to Advanced Sequencing Platforms Tackle Neuroscience’s Toughest Genomics Problems
                                  by mylaser
                                  Kheloyar – Everything You Need to Know About Kheloyaar Login and Kheoyar Id
                                  If you are looking for an online gaming platform that offers a user-friendly experience, Kheloyar has become a name that many users search for. Whether you're interested in creating a new account, accessing your dashboard through Kheloyaar Login, or learning how to obtain a Kheoyar Id, understanding the platform's features and account process is essential.
                                  This guide explains everything you need to know about...
                                  07-11-2026, 01:13 AM
                                • 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

                                ad_right_rmr

                                Collapse

                                News

                                Collapse

                                Topics Statistics Last Post
                                Started by SEQadmin2, 07-09-2026, 10:04 AM
                                0 responses
                                23 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-08-2026, 10:08 AM
                                0 responses
                                14 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-07-2026, 11:05 AM
                                0 responses
                                33 views
                                0 reactions
                                Last Post SEQadmin2  
                                Started by SEQadmin2, 07-02-2026, 11:08 AM
                                0 responses
                                31 views
                                0 reactions
                                Last Post SEQadmin2  
                                Working...