osteosarc
Python library and command-line tool for the public osteosarc.com dataset: one patient's osteosarcoma sequencing, variant calls, cancer vaccines and clinical history.
- Explore it: every sample and what was sequenced, every file in the bucket, the variant catalogue with its vaccines, and the clinical timeline.
- Make test data from it: pull the reads around a few variants out of a remote BAM into a small local one, without downloading the BAM.
Documentation · Concepts · Command line · Python API · Changelog
Install
python -m pip install osteosarc
Needs Python 3.9+ on Linux or macOS, and SAMtools on your PATH to fetch reads.
Explore
osteosarc sync # once: about 57 MB of the website's metadata
osteosarc # the snapshot in use, and every command
osteosarc samples # samples and what was sequenced
osteosarc samples T1_tumor # one sample's files, and commands to get them
osteosarc files # what's in the bucket, by kind and folder
osteosarc variants --gene MAP2
osteosarc timeline # treatments, procedures, scans and MRD
Every command prints text for people, or JSON with --json. In Python or a
notebook, everything shows a readable preview; osteosarc repl opens Python with
the data loaded:
from osteosarc import Dataset
data = Dataset.sync() # later: Dataset.open(), offline
data # what's here, and how to get it
data.samples["T1_tumor"]
Make test data
The reads around a variant in each of a sample's RNA-seq BAMs, saved in a folder:
osteosarc reads T0_tumor --assay rna-seq --variant DYNC1H1-chr14-101980529 --padding 100 --to tests/data
Or in Python, for one BAM:
source = data.file("rna-seq/reprocessed/BG003082/BG003082.Aligned.sortedByCoord.out.md.bam")
dync1h1 = data.variants(gene="DYNC1H1", status="ready")
reads = data.extract_reads(source, variants=dync1h1, padding=100, to="tests/data")
print(reads.path)
Only the reads near the variants are fetched, into a small indexed BAM; asking again
reuses it, even offline. The OpenVax libraries share one ready-made bundle of test
reads, openvax-v1: osteosarc test-data list openvax-v1 shows what's in it.
The website changes over time, so its metadata is saved as dated snapshots:
osteosarc snapshots lists them, and --snapshot 2026-09 picks the newest from that
month. Osteosarc also fixes known errors
in the website's data; osteosarc --no-corrections shows the published values.
Guides
| To | Read |
|---|---|
| Understand samples, variants, coordinates and corrections | Concepts |
| Find a sample's files, and download them | Samples and files |
| Get alleles, read counts and vaccine peptides | Variants and vaccines |
| Fetch reads by variant or region | Reads |
| Use the shared test reads, or build your own bundle | Test data |
| Chart treatments, scans and MRD | Timeline |
| Pass data to Varcode, Isovar, Topiary or Vaxrank | OpenVax libraries |
| Look through 637 candidate structural variants | SV candidates |
Data, license and citation
Code is Apache-2.0. The dataset is listed as CC0-1.0 in the AWS Open Data Registry. Cite the dataset and your access date when using it.
Development
python -m pip install -e '.[test]'
ruff check osteosarc tests scripts
python -m pytest -q
See testing for documentation builds and live-example checks.
Release files for osteosarc 0.11.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| osteosarc-0.11.0.tar.gz | 925.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| osteosarc-0.11.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.5 MB
Release files / osteosarc-0.11.0.tar.gz
| Download URL | osteosarc-0.11.0.tar.gz |
|---|---|
| Size | 925.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fa8ed2ffc77796589112a5e9d256eff355e18898b6d55ccc36ffaffe384c9c0a
|
|
BLAKE2b-256 checksum How to use checksums |
411fcecc0d7f424f1c6a809311d96928be56a15639831d1914f39befa0037bc9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.6
|
Release files / osteosarc-0.11.0-py3-none-any.whl
| Download URL | osteosarc-0.11.0-py3-none-any.whl |
|---|---|
| Size | 600.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
e92c79f97f0fdefa9421b5445a6f00dfed50e55a9b16087efc05ee0d305d177a
|
|
BLAKE2b-256 checksum How to use checksums |
486ef6419dd4f871ec5a734842e138257efd6dfab76d5911b76dac1864300ef0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.6
|