Skip to content
Snippets Groups Projects
Commit ca8ec578 authored by Gervaise Henry's avatar Gervaise Henry
Browse files

Use dedupBam for inferMeta

parent e5fdb858
Branches
Tags
3 merge requests!37v0.0.1,!24Develop,!23Resolve "process_RSeQC"
Pipeline #6265 failed with stages
in 2 minutes and 57 seconds
......@@ -287,7 +287,6 @@ process trimData {
// Replicate reference for multiple process inputs
reference.into {
reference_alignData
reference_inferMeta
}
/*
......@@ -368,6 +367,7 @@ process dedupData {
// Replicate dedup bam/bai for multiple process inputs
dedupBam.into {
dedupBam_makeBigWig
dedupBam_inferMeta
}
/*
......@@ -423,7 +423,7 @@ process inferMetadata {
input:
path script_inferMeta
path reference_inferMeta
set val (repRID), path (inBam), path (inBai) from rawBam_inferMetadata
set val (repRID), path (inBam), path (inBai) from dedupBam_inferMetadata
output:
path "infer.csv" into inferedMetadata
......@@ -480,4 +480,4 @@ process inferMetadata {
# write infered metadata to file
echo \${endness},\${stranded},\${strategy},\${percentF},\${percentR},\${fail} > infer.csv
"""
}
}
\ No newline at end of file
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