Description Details Author(s) References See Also Examples
Methods to handle various files types.
The Files resource provides access to files stored in BaseSpace. A file should be seen as a data stream and associated attributes (date created, size, type, etc.).
For known file types (.bam, .vcf, etc.) we offer wrappers to 'map' this objects to various Bioconductor objects.
Adrian Alexa
https://developer.basespace.illumina.com/docs/content/documentation/rest-api/api-reference
AppAuth
, AppResults
and
Files
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(aAuth)
## get one AppResult
reseq <- AppResults(listAppResults(aAuth, projectId = 21383369, Limit = 1))
f <- listFiles(reseq)
TotalCount(f)
Name(f)
## list only the BAM files
f <- listFiles(aAuth, appResultId = Id(reseq), Extensions = ".bam")
Name(f)
## construct the BAMFile
##...
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.