Description Usage Arguments Details Value Author(s) References See Also Examples
Manipulating variant data.
1 2 | getVariantSet(x, ...)
getVariants(x, ...)
|
x |
An object of class |
... |
Adiditional arguments supported by the REST API.
|
Coming soon...
These methods return a list with a representation of variant data.
Adrian Alexa
https://developer.basespace.illumina.com/docs/content/documentation/rest-api/api-reference
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | data(aAuth)
## get the ids of VCF files (within an AppResult? )
reseq <- listAppResults(aAuth, projectId = 21383369, Limit = 1)
AppResults(reseq)
vcfs <- listFiles(AppResults(reseq), Extensions = ".vcf")
Name(vcfs)
Id(vcfs)
vcfs
## Not run:
## variant metadata
getVariantSet(aAuth, vid)
## get the variants
getVariants(aAuth, vid, chrom = "chr")
v <- getVariants(aAuth, vid, chrom = "chr", EndPos = 1000000L, Limit = 5)
v
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.