Skip to content
Snippets Groups Projects
Commit 69d74285 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Resove merge comments from @venkat.malladi

parent 126fe448
Branches
Tags
2 merge requests!37v0.0.1,!28Resolve "Move inference to start of pipeline"
Pipeline #6704 passed with stages
in 2 hours, 50 minutes, and 39 seconds
......@@ -120,7 +120,6 @@ process getData {
// Replicate raw fastq's for multiple process inputs
fastqs.into {
fastqs_downsampleData
fastqs_trimData
fastqs_fastqc
}
......@@ -324,7 +323,7 @@ process downsampleData {
if [ "${ends}" == "se" ]
then
echo "LOG: downsampling single-end trimmed fastq" >> ${repRID}.downsampleData.err
seqtk sample -s100 *trimmed.fq.gz 10000 1> sampled.1.fq 2>> ${repRID}.downsampleData.err
seqtk sample -s100 *trimmed.fq.gz 100000 1> sampled.1.fq 2>> ${repRID}.downsampleData.err
elif [ "${ends}" == "pe" ]
then
echo "LOG: downsampling read 1 of paired-end trimmed fastq" >> ${repRID}.downsampleData.err
......@@ -495,7 +494,6 @@ inferMetadata.splitCsv(sep: ",", header: false).separate(
)
// Replicate metadata for multiple process inputs
endsInfer.into {
endsInfer_trimData
endsInfer_alignData
endsInfer_countData
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment