Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GUDMAP_RBK
RNA-seq
Commits
c114a629
Commit
c114a629
authored
Sep 20, 2020
by
Gervaise Henry
🤠
Browse files
Reduce species inference cutoffs
parent
f0100c48
Pipeline
#8303
passed with stages
in 1 minute and 42 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
workflow/rna-seq.nf
View file @
c114a629
...
...
@@ -599,12 +599,12 @@ process inferMetadata {
echo -e "LOG: inference of strandedness results is: \${spike}" >> ${repRID}.inferMetadata.log
# 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
species="Homo sapiens"
bam="GRCh.sampled.sorted.bam"
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
species="Mus musculus"
bam="GRCm.sampled.sorted.bam"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment