Skip to content

Commit 3cc58bc

Browse files
committed
v4.0.3: fix --order should accept vector
1 parent a291631 commit 3cc58bc

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
- Feature: multiple primer trimming.
66
- Feature: UMI trimming.
77

8+
## v4.0.3
9+
10+
- Fix: `--order` or `-O` option should accept multiple arguments.
11+
812
## v4.0.2
913

1014
- Fix: `--detect-adapter` for paired reads: refer to index 1 of empty vector when no adapter is found.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Atria"
22
uuid = "226cbef3-b485-431c-85c2-d8bd8da14025"
33
authors = ["Jiacheng Chuan <jiacheng_chuan@outlook.com>"]
4-
version = "4.0.2"
4+
version = "4.0.3"
55

66
[deps]
77
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"

src/Trimmer/args.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ function parsing_args(args::Vector; exit_after_help = true)
8282
help = "order of trimming and filtration processing methods. Unlisted process will not be done. See epilog for process names"
8383
metavar = "PROCESS"
8484
default = String["DefaultOrder"]
85+
nargs = '+'
8586
end
8687

8788
add_arg_group!(settings, "poly X tail trimming")

0 commit comments

Comments
 (0)