Skip to content
Snippets Groups Projects
Verified Commit ed5b2f47 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

docker: add htseq 0.13.5

parent 2e4cc629
Branches
No related tags found
No related merge requests found
FROM quay.io/biocontainers/htseq:0.13.5--py39h70b41aa_1
MAINTAINER Laurent Modolo
#!/bin/sh
docker pull lbmc/htseq:0.13.5
docker build src/.docker_modules/htseq/0.13.5 -t 'lbmc/htseq:0.13.5'
docker push lbmc/htseq:0.13.5
...@@ -147,6 +147,7 @@ process kb_default { ...@@ -147,6 +147,7 @@ process kb_default {
-x 10XV3 \ -x 10XV3 \
${params.count} \ ${params.count} \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt ${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
""" """
} }
...@@ -196,6 +197,7 @@ process kb_marseq { ...@@ -196,6 +197,7 @@ process kb_marseq {
${params.count} \ ${params.count} \
-x 1,0,6:1,6,14:0,0,0 \ -x 1,0,6:1,6,14:0,0,0 \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt ${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
""" """
else else
""" """
...@@ -209,6 +211,7 @@ process kb_marseq { ...@@ -209,6 +211,7 @@ process kb_marseq {
${params.count} \ ${params.count} \
-x 1,0,6:1,6,14:0,0,0 \ -x 1,0,6:1,6,14:0,0,0 \
${reads} > ${file_prefix}_kb_mapping_report.txt ${reads} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
""" """
} }
...@@ -335,6 +338,9 @@ process velocity_default { ...@@ -335,6 +338,9 @@ process velocity_default {
-x 10XV3 \ -x 10XV3 \
${params.count} \ ${params.count} \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt ${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
cp ${cdna_t2g} ${file_prefix}/
cp ${intron_t2g} ${file_prefix}/
""" """
} }
...@@ -387,6 +393,9 @@ process velocity_marseq { ...@@ -387,6 +393,9 @@ process velocity_marseq {
${params.count} \ ${params.count} \
-x 1,0,6:1,6,14:0,0,0 \ -x 1,0,6:1,6,14:0,0,0 \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt ${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
cp ${cdna_t2g} ${file_prefix}/
cp ${intron_t2g} ${file_prefix}/
""" """
else else
""" """
...@@ -403,5 +412,8 @@ process velocity_marseq { ...@@ -403,5 +412,8 @@ process velocity_marseq {
${params.count} \ ${params.count} \
-x 1,0,6:1,6,14:0,0,0 \ -x 1,0,6:1,6,14:0,0,0 \
${reads} > ${file_prefix}_kb_mapping_report.txt ${reads} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
cp ${cdna_t2g} ${file_prefix}/
cp ${intron_t2g} ${file_prefix}/
""" """
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment