Skip to content

Commit

Permalink
Merge branch 'main' into rseqc_innerdistance
Browse files Browse the repository at this point in the history
  • Loading branch information
emmarousseau authored Sep 29, 2024
2 parents ded981b + 237a2e3 commit 97f5b0f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
* `rseqc`:
- `rseqc/rseqc_inner_distance`: Calculate inner distance between read pairs (PR #159).

* `falco`: Fix a typo in the `--reverse_complement` argument (PR #157).

## MINOR CHANGES

* Upgrade to Viash 0.9.0.
Expand Down
2 changes: 1 addition & 1 deletion src/falco/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ argument_groups:
bisulfite sequencing, and more Ts and fewer
Cs are therefore expected and will be
accounted for in base content.
- name: --reverse_complliment
- name: --reverse_complement
alternatives: [-r]
type: boolean_true
description: |
Expand Down
4 changes: 2 additions & 2 deletions src/falco/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -eo pipefail

[[ "$par_nogroup" == "false" ]] && unset par_nogroup
[[ "$par_bisulfite" == "false" ]] && unset par_bisulfite
[[ "$par_reverse_compliment" == "false" ]] && unset par_reverse_compliment
[[ "$par_reverse_complement" == "false" ]] && unset par_reverse_complement

IFS=";" read -ra input <<< $par_input

Expand All @@ -15,7 +15,7 @@ $(which falco) \
${par_limits:+--limits "$par_limits"} \
${par_subsample:+-subsample $par_subsample} \
${par_bisulfite:+-bisulfite} \
${par_reverse_compliment:+-reverse-compliment} \
${par_reverse_complement:+-reverse-complement} \
${par_outdir:+--outdir "$par_outdir"} \
${par_format:+--format "$par_format"} \
${par_data_filename:+-data-filename "$par_data_filename"} \
Expand Down

0 comments on commit 97f5b0f

Please sign in to comment.