Skip to content

Commit

Permalink
Fix: mirdeep2 mapper statistics are emitted to standard error
Browse files Browse the repository at this point in the history
  • Loading branch information
skchronicles committed Aug 8, 2023
1 parent 4d18f49 commit 6c61933
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflow/rules/align.smk
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ rule mirdeep2_mapper:
-t {output.arf} \\
-v \\
-o {threads} \\
> {output.map_log}
> {output.map_log} 2>&1
# Extract mapper statistics
paste \\
Expand Down Expand Up @@ -114,4 +114,5 @@ rule mirdeep2_gather_mapper_statistics:
awk 'NR=="2" {{print}}' "${{f}}" \\
>> {output.map_tsv}
i=$((i + 1))
done
"""

0 comments on commit 6c61933

Please sign in to comment.