How to run fastqc analysis in the computational infrastructure of INAB
Steps to run the analysis:
1. Log in to the appropriate server:
o 160.40.71.4
2. Identify where your NGS results (.fastq files) are located:
o e.g., /mnt/new_home/stamatopoulos_research/2025_05_21_ERIC_study
3. Move to the your working directory:
cd /work/folder_of_each_user4. Create a new analysis directory:
mkdir fastqc_2025_05_215. Move to the your new analysis directory:
cd /work/folder_of_each_user/fastqc_2025_05_216. Download script to your analysis directory
wget https://raw.githubusercontent.com/BiodataAnalysisGroup/RNAseq_analysis/main/bash/fastqc.shwget https://raw.githubusercontent.com/BiodataAnalysisGroup/RNAseq_analysis/main/bash/runFASTQC.sh 7. Create a SampleList
You have to update with the right path to your fastq files.
ls -la /mnt/new_home/stamatopoulos_research/2025_05_21_ERIC_study | awk '{print $9}' | awk -F "_R" '{print $1}' | sort | uniq > SampleList8. Remove samples that should not be analyzed:
nano SampleListIn order to edit the SampleList use the following:
o Delete button: Removes one letter
o Ctrl + k: Removes a whole row
o Ctrl + o and Enter: Saves the modified SampleList
o Ctrl + x: Exits and returns to the terminal
9. Run the analysis:
You have to update with the right path.
nohup bash runFASTQC.sh /mnt/new_home/stamatopoulos_research/2025_05_21_ERIC_study SampleList 16 &10. After the analysis is completed
Move your folder from /work to /mnt/new_home
cd ..rsync -r fastqc_2025_05_21 /mnt/new_home/stamatopoulos_research