Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/updateResources.R
Add new resources to AnnotationHub
1 2 3 4 5 6 7 8 | updateResources(AnnotationHubRoot, BiocVersion = BiocManager::version(),
preparerClasses = getImportPreparerClasses(),
metadataOnly = TRUE, insert = FALSE,
justRunUnitTest = FALSE, ...)
pushResources(allAhms, uploadToS3 = TRUE, download = TRUE)
pushMetadata(allAhms, url)
|
AnnotationHubRoot |
Local path where files will be downloaded. |
BiocVersion |
A |
preparerClasses |
One of the |
metadataOnly |
A When FALSE, metadata are generated and data files are downloaded,
processed and pushed to their final location in S3 buckets.
|
insert |
NOTE: This option is for inserting metadata records in the production data base (done by Bioconductor core team member) and is for internal use only. A When |
justRunUnitTest |
A |
allAhms |
List of |
url |
URL of AnnotationHub database where metadata will be inserted. |
uploadToS3 |
A |
download |
A |
... |
Arguments passed to other methods such as |
updateResources:
updateResources
is responsible for creating metadata records
and downloading, processing and pushing data files to their final
resting place. The
preparerClasses argument is used in method dispatch to determine which recipe is used.
By manipulating the metadataOnly
, insert
and
justRunUnitTest
arguments one can flexibly test the metadata
for a small number of records with or without downloading and
processing the data files.
global options:
Several recipes look at the "AnnotationHub_Use_Disk" option
to determine if the file is written to S3. This is legacy behavior
and not clearly documented. If the recipe being run respects this
option it must be set before running updateResources
,
When insert = TRUE
the "AH_SERVER_POST_URL" option must be
set to the https location of the AnnotationHub db.
A list of AnnotationHubMetadata
objects.
Martin Morgan, Marc Carlson
AnnotationHubMetadata
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | ## Not run:
## -----------------------------------------------------------------------
## Inspect metadata:
## -----------------------------------------------------------------------
## A useful first step in testing a new recipe is to generate and
## inspect a small number of metadata records. The combination of
## 'metadataOnly=TRUE', 'insert=FALSE' and 'justRunUnitTest=TRUE'
## generates metadata for the first 5 records and does not download or
## process any data.
meta <- updateResources("/local/path",
BiocVersion = "3.3",
preparerClasses = "EnsemblFastaImportPreparer",
metadataOnly = TRUE, insert = FALSE,
justRunUnitTest = TRUE,
release = "84")
INFO [2015-11-12 07:58:05] Preparer Class: EnsemblFastaImportPreparer
Ailuropoda_melanoleuca.ailMel1.cdna.all.fa.gz
Ailuropoda_melanoleuca.ailMel1.dna_rm.toplevel.fa.gz
Ailuropoda_melanoleuca.ailMel1.dna_sm.toplevel.fa.gz
Ailuropoda_melanoleuca.ailMel1.dna.toplevel.fa.gz
Ailuropoda_melanoleuca.ailMel1.ncrna.fa.gz
## The return value is a list of metadata for the first 5 records:
> names(meta)
[1] "FASTA cDNA sequence for Ailuropoda melanoleuca"
[2] "FASTA DNA sequence for Ailuropoda melanoleuca"
[3] "FASTA DNA sequence for Ailuropoda melanoleuca"
[4] "FASTA DNA sequence for Ailuropoda melanoleuca"
[5] "FASTA ncRNA sequence for Ailuropoda melanoleuca"
## Each record is of class AnnotationHubMetadata:
> class(meta[[1]])
[1] "AnnotationHubMetadata"
attr(,"package")
[1] "AnnotationHubData"
## -----------------------------------------------------------------------
## Insert metadata in the db and process/push data files:
## -----------------------------------------------------------------------
## This next code chunk creates the metadata and downloads and processes
## the data (metadataOnly=FALSE). If all files are successfully pushed to
## to their final resting place, metadata records are inserted in the
## AnnotationHub db (insert=TRUE). Metadata insertion is done by a
## Bioconductor team member; contact maintainer@bioconductor.org for help.
meta <- updateResources("local/path",
BiocVersion = "3.5",
preparerClasses = "EnsemblFastaImportPreparer",
metadataOnly = FALSE, insert = TRUE,
justRunUnitTest = FALSE,
regex = ".*release-81")
## -----------------------------------------------------------------------
## Recovery helpers:
## -----------------------------------------------------------------------
## pushResources() and pushMetadata() are both called from updateResources()
## but can be used solo for testing or completing a run that
## terminated unexpectedly.
## Download, process and push to S3 the last 2 files in 'meta':
sub <- meta[length(meta) - 1:length(meta)]
pushResources(sub)
## Insert metadata in the AnotationHub db for the last 2 files in 'meta':
pushMetadata(sub, url = getOption("AH_SERVER_POST_URL"))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.