Sample sheets
Use one CSV per shipment with customer sample IDs, i5/i7 indexes, and requested reads. The dashboard can import the CSV and generate Om tracking IDs for shipping.
Review instructionsdocs
Use Sequence docs for sample-sheet rules, billing basics, and data access when you want to pull ready reads into your own tools.
Use one CSV per shipment with customer sample IDs, i5/i7 indexes, and requested reads. The dashboard can import the CSV and generate Om tracking IDs for shipping.
Review instructionsReady data is scoped to your Sequence account. Private links from the dashboard or API are only created for data owned by your account.
View ready datadata access quickstart
Use these examples from your server, notebook, or backend workflow. The Sequence website uses your signed-in session, so access keys should not be placed in browser code.
Open the account menu, create an active Sequence access key, and keep it in your environment.
Call the Sequence API to see ready data owned by your account.
Use the ready-data code to generate a private link for downloading or streaming the paired Parquet file.
export SEQUENCE_API_KEY="omtx_..." curl -sS -H "x-api-key: $SEQUENCE_API_KEY" \ "https://api.omtx.ai/v2/sequence/readsets?limit=50"
export SEQUENCE_API_KEY="omtx_..." export READSET_CODE="RDS-..." curl -sS -H "x-api-key: $SEQUENCE_API_KEY" \ "https://api.omtx.ai/v2/sequence/readset-access?readset_code=$READSET_CODE"
import os
import requests
api_key = os.environ["SEQUENCE_API_KEY"]
url = "https://api.omtx.ai/v2/sequence/readsets"
headers = {"x-api-key": api_key}
params = {"limit": 50}
response = requests.get(url, headers=headers, params=params, timeout=30)
response.raise_for_status()
print(response.json())faq
Submit one CSV with customer_sample_id, i5_sequence, i7_sequence, and requested_reads. Your customer sample IDs stay attached to the results.
Use Illumina-style libraries with P5/P7 adapters, i5/i7 indexes, and sequencing primer sites compatible with Illumina machines.
No. You do not need buckets, service accounts, JSON keys, or FASTQ transfer setup. Ready data is available through private links, with API access for teams that want it.
Open Ready data in the dashboard to generate a download link, or use a Sequence access key to list ready data and request a private link.