Skip to content

Commit 14f6a4d

Browse files
committed
fix a typo in error message. thanks @stas-malavin. fix #442
1 parent bafff69 commit 14f6a4d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

seqkit/cmd/locate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Attentions:
125125
checkError(fmt.Errorf("flag -d (--degenerate) not allowed when giving flag -m (--max-mismatch)"))
126126
}
127127
if useRegexp {
128-
checkError(fmt.Errorf("flag -r (--use-regexp) not allowed when giving flag -m (--use-regexp)"))
128+
checkError(fmt.Errorf("flag -r (--use-regexp) not allowed when giving flag -m (--max-mismatch)"))
129129
}
130130
if nonGreedy && !quiet {
131131
log.Infof("flag -G (--non-greedy) ignored when giving flag -m (--max-mismatch)")

seqkit/cmd/sana.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ and continues processing the file.
6262
6363
Sana currently supports this FASTQ dialect:
6464
65-
- One line for each sequence and quality value
66-
- No identifiers in separator (+) lines
65+
- One line for each sequence and quality value
66+
- No identifiers in separator (+) lines
67+
6768
`,
6869

6970
Run: func(cmd *cobra.Command, args []string) {

0 commit comments

Comments
 (0)