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
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ fn main() -> Result<()> {
44
44
.long("output-prefix")
45
45
.value_name("output_prefix")
46
46
.takes_value(true)
47
-
.help("Output metadata (.out and .gff), proteins (.faa) and genes (.ffn) to files with this prefix. Use 'stdout' to write the predicted proteins to standard output."))
47
+
.help("Output metadata (.out and .gff), proteins (.faa) and genes (.ffn) to files with this prefix. Don't pass this argument or use 'stdout' to write the predicted proteins to standard output."))
48
48
.arg(Arg::with_name("complete")
49
49
.short("w")
50
50
.long("complete")
@@ -90,25 +90,25 @@ fn main() -> Result<()> {
90
90
.long("meta-file")
91
91
.value_name("meta_file")
92
92
.takes_value(true)
93
-
.help("Output metadata to this file (supersedes -o)."))
93
+
.help("Output metadata to this file (supersedes -o). Use - to write to standard output (use only once)."))
94
94
.arg(Arg::with_name("gff-file")
95
95
.short("g")
96
96
.long("gff-file")
97
97
.value_name("gff_file")
98
98
.takes_value(true)
99
-
.help("Output metadata to this gff formatted file (supersedes -o)."))
99
+
.help("Output metadata to this gff formatted file (supersedes -o). Use - to write to standard output (use only once)."))
100
100
.arg(Arg::with_name("aa-file")
101
101
.short("a")
102
102
.long("aa-file")
103
103
.value_name("aa_file")
104
104
.takes_value(true)
105
-
.help("Output predicted proteins to this file (supersedes -o)."))
105
+
.help("Output predicted proteins to this file (supersedes -o). Use - to write to standard output (use only once)."))
106
106
.arg(Arg::with_name("nucleotide-file")
107
107
.short("n")
108
108
.long("nucleotide-file")
109
109
.value_name("nucleotide_file")
110
110
.takes_value(true)
111
-
.help("Output predicted genes to this file (supersedes -o)."))
111
+
.help("Output predicted genes to this file (supersedes -o). Use - to write to standard output (use only once)."))
0 commit comments