Skip to content
Snippets Groups Projects
Unverified Commit 099b8b5e authored by Laurent Modolo's avatar Laurent Modolo
Browse files

rsem: fix tests

parent 7b7eab24
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ process mapping_fastq {
input:
set file_id, file(reads) from fastq_files
file index from index_files.toList()
file index from index_files.collect()
output:
file "*" into count_files
......@@ -37,7 +37,6 @@ process mapping_fastq {
}
}
"""
ls -l
rsem-calculate-expression --bowtie2 \
--bowtie2-path \$(which bowtie2 | sed 's/bowtie2\$//g') \
--bowtie2-sensitivity-level "very_sensitive" \
......
......@@ -9,7 +9,7 @@
-c src/nf_modules/rsem/quantification_single.config \
-profile docker \
--index "results/mapping/index/tiny_v2.index*" \
--fastq "data/tiny_dataset/fastq/tiny*_S.fastq" \
--fastq "data/tiny_dataset/fastq/tiny*_R1.fastq" \
-resume
./nextflow src/nf_modules/rsem/quantification_paired.nf \
......@@ -32,7 +32,7 @@ if [ -x "$(command -v singularity)" ]; then
-c src/nf_modules/rsem/quantification_single.config \
-profile docker \
--index "results/mapping/index/tiny_v2.index*" \
--fastq "data/tiny_dataset/fastq/tiny*_S.fastq" \
--fastq "data/tiny_dataset/fastq/tiny*_R1.fastq" \
-resume
./nextflow src/nf_modules/rsem/quantification_paired.nf \
......
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