Hello everyone.
I installed trimmomatic on my computer using conda. The problem is that when I try to execute trimmomatic I have an error because I don't have a file with the name "trimmomatic-036.jar"
This is the command that I'm trying to execute
java -jar /home/linuxngs/Escritorio/NGS/Trimmomatic-0.36/trimmomatic-0.36.jar PE -threads 20 -phred33 -trimlog logFile /home/linuxngs/Escritorio/Datos/SEC1_chr10.1.fastq
Try just trimmomatic/Trimmomatic after activating the conda environment.
What is the name of the conda environment that you used to create? Hopefully you used this command to install trimmomatic -> conda install -c bioconda trimmomatic Use command -> conda env list Lets assume the name is trimmomatic Then the command to activate the conda environment is -> conda activate trimmomatic
Then to run trimmomatic just use this command accordingly :
trimmomatic PE -threads 4 SRR_1056_1.fastq SRR_1056_2.fastq \ SRR_1056_1.trimmed.fastq SRR_1056_1un.trimmed.fastq \ SRR_1056_2.trimmed.fastq SRR_1056_2un.trimmed.fastq \ ILLUMINACLIP:adapters.fa SLIDINGWINDOW:4:20
trimmomatic SE -threads 4 SRR_1056.fastq \ SRR_1056.trimmed.fastq SRR_1056_un.trimmed.fastq \ ILLUMINACLIP:SRR_adapters.fa SLIDINGWINDOW:4:20
Helloooo thank you for the help to resolve the error