File tree 1 file changed +2
-2
lines changed
src/main/scala/com/fulcrumgenomics/bam
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ import scala.collection.immutable.IndexedSeq
55
55
|done in streaming fashion with, for example:
56
56
|
57
57
|```
58
- |samtools sort -n -u in.bam | fgbio ClipBam -i /dev/stdin ...
58
+ |samtools sort -n in.bam | fgbio ClipBam -i /dev/stdin ...
59
59
|```
60
60
|
61
61
|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
86
86
@ arg( doc= " Require at least this number of bases to be clipped on the 3' end of R2" ) val readTwoThreePrime : Int = 0 ,
87
87
@ arg( doc= " Clip overlapping reads." ) val clipOverlappingReads : Boolean = false ,
88
88
@ 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." )
90
90
val sortOrder : Option [SamOrder ] = None
91
91
) extends FgBioTool with LazyLogging {
92
92
Io .assertReadable(input)
You can’t perform that action at this time.
0 commit comments