Skip to content
Snippets Groups Projects
Commit 76d5fdd5 authored by Pappas's avatar Pappas
Browse files

Added precommand to ExtractAdaptersFastqc task

parent de0b9120
No related branches found
No related tags found
1 merge request!28Added precommand to ExtractAdaptersFastqc task
......@@ -73,6 +73,7 @@ task BaseCounter {
task ExtractAdaptersFastqc {
File? toolJar
String? preCommand
File inputFile
String outputDir
String? adapterOutputFilePath = outputDir + "/adapter.list"
......@@ -93,6 +94,7 @@ task ExtractAdaptersFastqc {
command {
set -e
${preCommand}
mkdir -p ${outputDir}
${toolCommand} \
--inputFile ${inputFile} \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment