You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bin/FragGeneScanRs.rs
+23-28Lines changed: 23 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -37,12 +37,12 @@ fn main() -> Result<()> {
37
37
.takes_value(true)
38
38
.default_value("stdin")
39
39
.help("Sequence file name including the full path. Using 'stdin' (or not suplying this argument) reads from standard input."))
40
-
.arg(Arg::with_name("output-file")
40
+
.arg(Arg::with_name("output-prefix")
41
41
.short("o")
42
-
.long("output-file-name")
43
-
.value_name("output_file_name")
42
+
.long("output-prefix")
43
+
.value_name("output_prefix")
44
44
.takes_value(true)
45
-
.help("Output metadata, proteins and dna to files with this base name. Using 'stdout' write the predicted AA reads to standard output."))
45
+
.help("Output metadata (.out), proteins (.faa) and genes (.ffn) to files with this prefix. Use 'stdout' to write the predicted proteins to standard output."))
46
46
.arg(Arg::with_name("complete")
47
47
.short("w")
48
48
.long("complete")
@@ -90,24 +90,17 @@ fn main() -> Result<()> {
90
90
.takes_value(true)
91
91
.help("Output metadata to this file (supersedes -o)."))
92
92
.arg(Arg::with_name("aa-file")
93
-
.short("e")
93
+
.short("a")
94
94
.long("aa-file")
95
95
.value_name("aa_file")
96
96
.takes_value(true)
97
-
.help("Output predicted AA reads to this file (supersedes -o)."))
98
-
.arg(Arg::with_name("dna-file")
99
-
.short("d")
100
-
.long("dna-file")
101
-
.value_name("dna_file")
97
+
.help("Output predicted proteins to this file (supersedes -o)."))
98
+
.arg(Arg::with_name("nucleotide-file")
99
+
.short("n")
100
+
.long("nucleotide-file")
101
+
.value_name("nucleotide_file")
102
102
.takes_value(true)
103
-
.help("Output predicted DNA reads to this file (supersedes -o)."))
104
-
// .arg(Arg::with_name("translation-table")
105
-
// .short("x")
106
-
// .long("translation-table")
107
-
// .value_name("translation_table")
108
-
// .takes_value(true)
109
-
// .default_value("11")
110
-
// .help("Which translation table to use."))
103
+
.help("Output predicted genes to this file (supersedes -o)."))
0 commit comments