Skip to content

Commit

Permalink
Merge pull request #16 from colindaven/master
Browse files Browse the repository at this point in the history
corrected typos
  • Loading branch information
pcostanza authored Oct 24, 2018
2 parents 386a618 + 05dccc8 commit 995f176
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/deprecated-filter.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const DeprecatedFilterHelp = "\nFilter parameters: (deprecated, please use the f
// later stage.
func DeprecatedFilter() error {
setLogOutput("")
log.Println("Warning: Calling elprep without a command to invoke the filter functionality is depecratead. Please use the filter command instead.")
log.Println("Warning: Calling elprep without a command to invoke the filter functionality is deprecated. Please use the filter command instead.")
cmdLine := commandLine(os.Args[1:])
sortingOrder := sam.Keep
nrOfThreads := 0
Expand Down Expand Up @@ -164,7 +164,7 @@ func DeprecatedFilter() error {
} else {
switch val {
case 0, 1, 2:
log.Println("Warning: The gc-on option is not supported anymore in this version of elPrep.")
log.Println("Warning: The gc-on option is not supported any more in this version of elPrep.")
default:
log.Printf("Invalid gc-on option %v.\n", lvl)
fmt.Fprint(os.Stderr, DeprecatedFilterHelp)
Expand All @@ -178,7 +178,7 @@ func DeprecatedFilter() error {
case "--rename-chromosomes":
renameChromosomesFilter = filters.RenameChromosomes
case "--split-file":
log.Println("Warning: The split-file option is not necessary anymore in this version of elPrep.")
log.Println("Warning: The split-file option is not necessary any more in this version of elPrep.")
default:
filenames = append(filenames, entry)
}
Expand Down

0 comments on commit 995f176

Please sign in to comment.