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
No related branches found
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 {
-x 10XV3 \
${params.count} \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
"""
}
......@@ -196,6 +197,7 @@ process kb_marseq {
${params.count} \
-x 1,0,6:1,6,14:0,0,0 \
${reads[0]} ${reads[1]} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
"""
else
"""
......@@ -209,6 +211,7 @@ process kb_marseq {
${params.count} \
-x 1,0,6:1,6,14:0,0,0 \
${reads} > ${file_prefix}_kb_mapping_report.txt
cp ${transcript_to_gene} ${file_prefix}/
"""
}
......@@ -335,6 +338,9 @@ process velocity_default {
-x 10XV3 \
${params.count} \
${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 {
${params.count} \
-x 1,0,6:1,6,14:0,0,0 \
${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
"""
......@@ -403,5 +412,8 @@ process velocity_marseq {
${params.count} \
-x 1,0,6:1,6,14:0,0,0 \
${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.
Finish editing this message first!
Please register or to comment