hub2gos
Transpiler to map a UCSC Trackhub configuration to a Gosling spec
Installation
Install the package directly from PyPI:
pip install hub2gos
Quickstart
To compile a UCSC trackhub into a Gosling specification from the command line, simply point the transpiler at your hub.txt file:
python -m hub2gos.cli path/to/hub.txt
hub2gos supports both the standard UCSC Trackhub mode and the useOneFile mode.
CLI Usage
usage: python -m hub2gos.cli [-h] [-o OUTPUT] [-c COORDS] [-a ASSEMBLY] [-v] hub_file
Convert UCSC TrackHub track information to a Gosling Spec
positional arguments:
hub_file Path to local hub.txt file. Supports both standard and useOneFile modes.
options:
-h, --help show this help message and exit
-o, --output OUTPUT Output JSON file path (prints to stdout if omitted)
-c, --coords COORDS Optional coordinates to set starting domain of tracks.
Must be in the format 'chr:start-end' (e.g., 'chr1:1000000-2000000')
-a, --assembly ASSEMBLY
Optional genome assembly (e.g., 'hg38', 'mm10').
If not provided, will throw an error in standard mode.
This value is not used in useOneFile mode.
-v, --verbose Enable detailed logging output
Input Data Specifications & Compression Rules
When converting a UCSC Track Hub configuration using hub2gos, input data URLs must adhere strictly to the coordinate streaming capabilities of modern web browsers. In addition, some UCSC Track Hub file types are not compatible and must have an alternate file path under the gos_url property that will be used to read the data into Gosling instead. Otherwise the transpiler will use the bigDataUrl property instead.
This utility will return a Gosling Spec for the UCSC trackhub input, but does not validate that the supplied paths are streamable. There is a HTML page called quick_viewer.html on the top-level of this repository that can be used to validate the Gosling visualization itself by passing in the JSON spec.
Supported Formats & Compression Matrices
| UCSC Track Type | Expected File Suffix(es) | gos_url file? | Tabix Index Required? | Work-in-progress? |
|---|---|---|---|---|
| BAM | .bam |
No | Yes (.bam.bai) |
Yes |
| BigBed | .bb, .bigbed |
.bed.gz |
Yes (BGZF-formatted .tbi) |
No |
| BigInteract | .bi, .bigInteract |
"beddb" HiGlass tileset | No | No |
| BigWig | .bw, .bigwig |
No | No | No |
| HiC | .hic |
"cooler" HiGlass tileset | No | No |
| VCF | .vcf.gz |
No | Yes (BGZF-formatted .tbi) |
Yes |
⚠️ Performance Note on BAM Tracks: While natively supported by Gosling, rendering BAM files over a broad genomic coordinate range can degrade client-side performance. For better performance, consider converting BAM files to BigWig (for depth density) or BigBed/BED (for structural mutations) during your server pipeline staging.
Crucial Constraints
None of these contraints will prevent you from generating the Gosling spec JSON. They will however prevent you from streaming the data in the Gosling viewer.
- Plaintext Text Files: Uncompressed tabular streams (e.g., raw
.bedor.vcftext targets) are unsupported for chunked client-side streaming. Text tracking formats must be block-gzipped usingbgzipbefore indexing. Documentation on bgzip - Alternative Compressors: High-ratio archival compressors such as
bzip2(.bz2) orxz(.xz) are completely unsupported. These engines do not produce block-level byte partitions, making selective genomic coordinate slicing over network requests impossible. - For any track type that recommends serving files on a HiGlass server, you can peruse the HiGlass documentation to learn how to set up a HiGlass server, aggregate files with Clodius, and ingest them into HiGlass.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hub2gos-0.3.0.tar.gz.
File metadata
- Download URL: hub2gos-0.3.0.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
092d099fc978b46b659399958531dce8d84676ac721e72f72ab9b067d074b370
|
|
| MD5 |
a9b64dd341449f7abb51590995eb609c
|
|
| BLAKE2b-256 |
b2b211f5c815906be94b55b67ce0b10ca10d4a33eec0fb425f3ac08ca15ea809
|
File details
Details for the file hub2gos-0.3.0-py3-none-any.whl.
File metadata
- Download URL: hub2gos-0.3.0-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bddfebb69c69f02528c0cd776210ee67477feaa7fad578f6ad1485a8e7e0b727
|
|
| MD5 |
a643535c53c5c2f0eac8ee69c03a0b94
|
|
| BLAKE2b-256 |
c80ad7921d4f3ebd659bb073c52509a7ee7ddca41a0a2975bd6d71e0f674ec54
|