Correct some misspelling in option helps

Changes to be committed:
	modified:   pkg/obitools/obiclean/options.go
	modified:   pkg/obitools/obiconvert/options.go
This commit is contained in:
2022-09-20 21:59:38 +02:00
parent f6735a634e
commit 3cd8aabd83
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ func ObicleanOptionSet(options *getoptions.GetOpt) {
options.BoolVar(&_onlyHead, "head", _onlyHead, options.BoolVar(&_onlyHead, "head", _onlyHead,
options.Alias("H"), options.Alias("H"),
options.Description("Select only sequences with the head status in a least one sample."), options.Description("Select only sequences with the head status in at least one sample."),
) )
options.StringVar(&_saveGraph, "save-graph", _saveGraph, options.StringVar(&_saveGraph, "save-graph", _saveGraph,

View File

@ -49,7 +49,7 @@ func InputOptionSet(options *getoptions.GetOpt) {
options.Description("Decodes quality string according to the Solexa specification.")) options.Description("Decodes quality string according to the Solexa specification."))
options.BoolVar(&__no_ordered_input__, "no-order", __no_ordered_input__, options.BoolVar(&__no_ordered_input__, "no-order", __no_ordered_input__,
options.Description("When several imput files are provided, "+ options.Description("When several input files are provided, "+
"indicates that there is no order among them.")) "indicates that there is no order among them."))
} }