API Basics
JUMP TO
- Getting Started
- Authentication
- API Documentation
- CLI & Client Library (Python)
- Jupyter Notebooks
- Pagination
- Errors
Samples
Metadata & Tags
- The Metadata Resource
- The Tag Resource
- Retrieve All Metadataget
- Retrieve A Metadata Recordget
- Retrieve All Tagsget
- Retrieve A Tagget
- Updating Metadatapatch
Analyses
- The Analysis Resource
- Retrieve All Analysesget
- Retrieve An Analysisget
- Retrieve Analysis Resultsget
- Retrieve Analysis Filesget
- Retrieve Analysis Output File Detailsget
- The Classification Resource
- Retrieve All Classificationsget
- Retrieve A Classificationget
- Classification Resultsget
- Read-Level Resultsget
- The Panel Resource
- Retrieve A Panelget
- Retrieve All Panelsget
- Panel Resultsget
- The Alignment Resource
- Retrieve All Alignmentsget
- Retrieve An Alignmentget
Jobs
Documents
Webhooks & Events
Sequencing
Uploading Samples
Uploading samples
FASTA and FASTQ files may be uploaded via the REST API or by using the One Codex CLI or Python client library.
The latter two options are simpler and thus recommended (and also support automatic interleaving and validation of your FASTA/Qs). In every case, we replace spaces in filenames with underscores. To upload with the CLI, simply:
Uploading via the REST API consists of 3 steps:
- (1) Initiating an upload by POSTing to
/samples/init_upload
- (2) Uploading the sample to the provided
upload_url
and with anyadditional_fields
provided. See the Starting an Upload documentation for more details. - (3) Confirming the upload by POSTing to
/samples/confirm_upload
Samples over 20GB
The REST upload above only allows sample uploads up to 20GB (optionally compressed with gzip
). If you need to upload a compressed file over 20GB, please use the onecodex
CLI.