Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

corrected typos #16

Merged
merged 1 commit into from
Oct 24, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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