-
Notifications
You must be signed in to change notification settings - Fork 61
Description
I can't find any information related to that "probe mode", and the probe mode seems to ruin my pipeline. I hope someone could find me a fix or tell me where might I get wrong.
Here is the pipeline I'm tring to use
cutadapt="~/.local/bin/cutadapt"
QCbycutadapt = {
def parts = input.split("/")
def sample = parts[parts.length - 1]
def file1 = input+"/"+sample+"_1.clean.fq.gz"
def file2 = input+"/"+sample+"_2.clean.fq.gz"
produce(input+"/"+sample+"_1.clean.fq.qc.gz", input+"/"+sample+"_2.clean.fq.qc.gz") {
exec """
$cutadapt -q 20 -m 20 -o $output1 -p $output2 $file1 $file2
"""
}
}
run {QCbycutadapt }
bpipe.PipelineContext [1] INFO |8:33:50 Skip check dependencies due to probe mode
bpipe.PipelineContext [1] INFO |8:33:50 Skip command start for ~/.local/bin/cutadapt -q 20 -m 20 -o K01_1.clean.fq.qc.gz -p K01_2.clean.fq.qc.gz 00.CleanData/K01/K01_1.clean.fq.gz 00.CleanData/K01/K01_2.clean.fq.gz due to probe mode