Adding documentation before the release for GATK wiki page
This commit is contained in:
parent
202405b1a1
commit
d369d10593
|
|
@ -36,7 +36,7 @@ import org.broadinstitute.sting.utils.sam.ReadUtils;
|
||||||
* @version 0.1
|
* @version 0.1
|
||||||
*/
|
*/
|
||||||
public class PlatformFilter extends ReadFilter {
|
public class PlatformFilter extends ReadFilter {
|
||||||
@Argument(fullName = "PLFilterName", shortName = "PLFilterName", doc="Discard reads with RG:PL attribute containing this strign", required=false)
|
@Argument(fullName = "PLFilterName", shortName = "PLFilterName", doc="Discard reads with RG:PL attribute containing this string", required=false)
|
||||||
protected String[] PLFilterNames;
|
protected String[] PLFilterNames;
|
||||||
|
|
||||||
public boolean filterOut(SAMRecord rec) {
|
public boolean filterOut(SAMRecord rec) {
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,13 @@ import org.broadinstitute.sting.gatk.refdata.ReadMetaDataTracker;
|
||||||
* -I input1.bam \
|
* -I input1.bam \
|
||||||
* -I input2.bam \
|
* -I input2.bam \
|
||||||
* --read_filter MappingQualityZero
|
* --read_filter MappingQualityZero
|
||||||
|
*
|
||||||
|
* java -Xmx2g -jar GenomeAnalysisTK.jar \
|
||||||
|
* -R ref.fasta \
|
||||||
|
* -T PrintReads \
|
||||||
|
* -o output.bam \
|
||||||
|
* -I input.bam \
|
||||||
|
* -n 2000
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue