The apt-get is nice since it installs into PATH. Thank you again.
Unconfigured Ad
Collapse
This topic is closed.
X
X
-
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:Originally posted by ronton View PostThe apt-get is nice since it installs into PATH. Thank you again.
Code:cd /usr/local/bin/ sudo ln -s /wherever/you/put/fastqc/fastqc .
Comment
-
-
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
-
-
You may need to add execute permissions to the fastqc link and/or original executable. You can start by
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.Code:$ sudo chmod u+x /usr/local/bin/fastqc
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
-
-
OK, there's one, and possibly two things to sort out.Originally posted by ronton View PostI 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
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
-
-
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
-
-
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.Originally posted by TimK View PostHi 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
Simon.
Comment
-
-
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
-
-
I tried chmod 755 fastqc (and using sudo before it) and I get the same result.Originally posted by simonandrews View PostOK, 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
'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
-
-
Sorry for the slow repsonse - just got back from holiday.Originally posted by ronton View PostI 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.
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
-
by mylaserKheloyar – 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...-
Channel: Articles
07-11-2026, 01:13 AM -
-
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.
...-
Channel: Articles
07-09-2026, 11:10 AM -
-
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...-
Channel: Articles
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
by SEQadmin2
07-09-2026, 10:04 AM
|
||
|
Started by SEQadmin2, 07-08-2026, 10:08 AM
|
0 responses
14 views
0 reactions
|
Last Post
by SEQadmin2
07-08-2026, 10:08 AM
|
||
|
Started by SEQadmin2, 07-07-2026, 11:05 AM
|
0 responses
33 views
0 reactions
|
Last Post
by SEQadmin2
07-07-2026, 11:05 AM
|
||
|
Started by SEQadmin2, 07-02-2026, 11:08 AM
|
0 responses
31 views
0 reactions
|
Last Post
by SEQadmin2
07-02-2026, 11:08 AM
|
Comment