Skip to content

Commit

Permalink
Fixes #96: update salmon index output description
Browse files Browse the repository at this point in the history
  • Loading branch information
borauyar committed Jun 7, 2021
1 parent af27e21 commit c8e93f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions snakefile.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def lookup(column, predicate, fields=[]):
'salmon_index' : {
'description': "Create SALMON index file.",
'files':
[os.path.join(OUTPUT_DIR, 'salmon_index', "sa.bin")]
[os.path.join(OUTPUT_DIR, 'salmon_index', "pos.bin")]
},
'salmon_quant' : {
'description': "Calculate read counts per transcript using SALMON.",
Expand Down Expand Up @@ -381,7 +381,7 @@ def hisat2_file_arguments(args):
input:
CDNA_FASTA
output:
salmon_index_file = os.path.join(OUTPUT_DIR, 'salmon_index', "sa.bin")
salmon_index_file = os.path.join(OUTPUT_DIR, 'salmon_index', "pos.bin")
resources:
mem_mb = 5000
params:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_salmon/test_salmon_index.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ head -n 2 ${samplesheet} > ${tmp_samplesheet}
${builddir}/pigx-rnaseq -s ${tmp_settings} --target salmon_index ${tmp_samplesheet}

rm ${tmp_settings} ${tmp_samplesheet}
if ! test -f ${testfolder}/salmon_index/sa.bin
if ! test -f ${testfolder}/salmon_index/pos.bin
then
echo "ERROR: failed the SALMON indexing test"
exit 1
Expand Down

0 comments on commit c8e93f2

Please sign in to comment.