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

Reduce species inference cutoffs

parent f0100c48
Branches
1 merge request!58Develop
Pipeline #8303 passed with stages
in 1 minute and 42 seconds
...@@ -599,12 +599,12 @@ process inferMetadata { ...@@ -599,12 +599,12 @@ process inferMetadata {
echo -e "LOG: inference of strandedness results is: \${spike}" >> ${repRID}.inferMetadata.log echo -e "LOG: inference of strandedness results is: \${spike}" >> ${repRID}.inferMetadata.log
# determine species # determine species
if [ 1 -eq \$(echo \$(expr \${align_hu} ">=" 25)) ] && [ 1 -eq \$(echo \$(expr \${align_mo} "<" 25)) ] if [ 1 -eq \$(echo \$(expr \${align_hu} ">=" 40)) ] && [ 1 -eq \$(echo \$(expr \${align_mo} "<" 40)) ]
then then
species="Homo sapiens" species="Homo sapiens"
bam="GRCh.sampled.sorted.bam" bam="GRCh.sampled.sorted.bam"
bed="./GRCh/bed/genome.bed" bed="./GRCh/bed/genome.bed"
elif [ 1 -eq \$(echo \$(expr \${align_mo} ">=" 25)) ] && [ 1 -eq \$(echo \$(expr \${align_hu} "<" 25)) ] elif [ 1 -eq \$(echo \$(expr \${align_mo} ">=" 40)) ] && [ 1 -eq \$(echo \$(expr \${align_hu} "<" 40)) ]
then then
species="Mus musculus" species="Mus musculus"
bam="GRCm.sampled.sorted.bam" bam="GRCm.sampled.sorted.bam"
......
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