BigWigAdapter
Auto-generated config schema for the current JBrowse release — see the config guide for concepts. Provided by the wiggle plugin. View source.
Example usage
{
type: 'QuantitativeTrack',
trackId: 'my_track',
name: 'My track',
assemblyNames: ['hg38'],
adapter: {
type: 'BigWigAdapter',
uri: 'https://example.com/coverage.bw',
},
}
coverage.bw infers BigWigAdapter and QuantitativeTrack on its own, and name defaults to the file name. In a config declaring one assembly, assemblyNames comes from there too — see the shortest track.
{
trackId: 'my_track',
uri: 'https://example.com/coverage.bw',
assemblyNames: ['hg38'],
}
See the Config slots section below for all available configuration fields.
used to load BigWig quantitative signal files
Related links
- Track: QuantitativeTrack
- Display: LinearWiggleDisplay
- Guide: Structural variants (Cancer GIAB)
- Guide: Supported file types
Config slots
These slots go inside the track's adapter: "adapter": { "type": "BigWigAdapter", ... }. It also accepts the shorthand keys uri, baseUri in place of writing a location slot out. Slot types (fileLocation, frozen, ...) are explained in the config slot types reference. Slots a base configuration contributes are listed here too, so this table is the whole surface.
| Slot | Description |
|---|---|
bigWigLocationfileLocation = { uri: '/path/to/my.bw', locationType: 'UriLocation' } | location of the BigWig file. It carries its own index and precomputed zoom levels, so there is no separate index to configure and a whole-chromosome view reads summary bins rather than every point. |
sourcestring = '' | added as feature.get('source') on all features |
resolutionMultipliernumber = 1 | Resolution multiplier applied to every fetch: <1 fetches more points (higher resolution), >1 fetches fewer (e.g. 2 = half as many points) advanced |