R package for uploading data to Bioconductor Hubs Ingest endpoints.
BiocHubsIngestR provides tools for uploading data to temporary S3 endpoints created by the Bioconductor Hubs Ingest stack. It uses the paws SDK for R to handle S3 operations and provides a simple interface for authentication and file uploads.
Before using this package, you must:
- Have an S3 ingestion endpoint generated by a Bioconductor admin
- Receive access credentials (username and password) from the admin
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Bioconductor/BiocHubsIngestR")
# Set up credentials (provided by Bioconductor admin)
BiocHubsIngestR::auth(username = "your_username", password = "your_password")
# Upload a single file
BiocHubsIngestR::upload("path/to/your/file.txt")
# Upload an entire directory
BiocHubsIngestR::upload("path/to/your/data/directory")
- After completing your data upload, notify the Bioconductor admin you are coordinating with
- Once you inform the admin that the upload is complete, the endpoint will be locked for processing
- No further uploads will be possible after the endpoint is locked
For questions or issues:
- Open an issue on the GitHub repository
- Contact the Bioconductor team