Trimmomatic - unknown trimmer?
Hi, all I have Double End fastq file and it needs trimming. So, I use trimmomatic software for this purpose.based on trimmomatic tutorial I write below code for my .fq.gz file:
but after run it in my Terminal, I see bellow error; Exception in thread "main" java.lang.RuntimeException: Unknown trimmer: GT1-N1.paired_GT1-N1_FRAS210028605-2r_2.fq.gz
I run this command in my data folder. so I appreciate if any body help me. Best, Hongran Liu
• 1,202 views
•
link
1 answer
You are passing too many files into the tool, it runs out the fields that it considers inputs/outputs and starts treating a file name as a trimming action.
Read up on the tool and adjust your inputs.
• 0 views
•
link
Log in to answer this question.
It is not a good idea to post screenshots of code. Please copy and paste the actual code and errors. Use the
101010button to highlight and format the code.You can't pass wild card files to trimmomatic. If you have more than one sample then run the trimming for each set of sample via a
forloop.