Description Usage Arguments Author(s) Examples
Calls the Picard executable.
1 2 | ## Default S3 method:
systemPicard(command, ..., verbose=FALSE)
|
command |
A |
... |
Additional arguments specifying Picard command line switches. |
verbose |
See |
Henrik Bengtsson
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
pathnameBAM <- "bwaData/LambdaVirusExample,bwa,is/Lambda_phage/reads_1.bam"
res <- systemPicard("ValidateSamFile", INPUT=pathnameBAM, stderr=FALSE)
## ERROR: Read groups is empty
print(res)
## [1] 1
res <- systemPicard("ValidateSamFile", INPUT=pathnameBAM,
IGNORE="MISSING_READ_GROUP", stderr=FALSE)
## "No errors found"
print(res)
## [1] 0
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.