Skip to content

Commit

Permalink
fix typo, modify script
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubmajercik committed Sep 27, 2024
1 parent 7cf018e commit 6334244
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

## BREAKING CHANGES

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

## MINOR CHANGES

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_compliment
- 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 6334244

Please sign in to comment.