Skip to content

Commit 8ce926d

Browse files
authored
Update ClipBam.scala
fix documentation
1 parent 8d31cf3 commit 8ce926d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/scala/com/fulcrumgenomics/bam/ClipBam.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import scala.collection.immutable.IndexedSeq
5555
|done in streaming fashion with, for example:
5656
|
5757
|```
58-
|samtools sort -n -u in.bam | fgbio ClipBam -i /dev/stdin ...
58+
|samtools sort -n in.bam | fgbio ClipBam -i /dev/stdin ...
5959
|```
6060
|
6161
|The output sort order may be specified with `--sort-order`. If not given, then the output will be in the same
@@ -86,7 +86,7 @@ class ClipBam
8686
@arg( doc="Require at least this number of bases to be clipped on the 3' end of R2") val readTwoThreePrime: Int = 0,
8787
@arg( doc="Clip overlapping reads.") val clipOverlappingReads: Boolean = false,
8888
@arg( doc="Clip reads in FR pairs that sequence past the far end of their mate.") val clipBasesPastMate: Boolean = false,
89-
@arg(flag='S', doc="The sort order of the output. If not given, output will be in the same order as input if the input.")
89+
@arg(flag='S', doc="The sort order of the output. If not given, output will be in the same order as the input.")
9090
val sortOrder: Option[SamOrder] = None
9191
) extends FgBioTool with LazyLogging {
9292
Io.assertReadable(input)

0 commit comments

Comments
 (0)