https://github.com/brentp/bigwig-nim
command-line querying+conversion of bigwigs and a nim wrapper for dpryan's libbigwig
Science Score: 13.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.6%) to scientific vocabulary
Keywords
Repository
command-line querying+conversion of bigwigs and a nim wrapper for dpryan's libbigwig
Basic Info
Statistics
- Stars: 16
- Watchers: 2
- Forks: 2
- Open Issues: 4
- Releases: 2
Topics
Metadata Files
README.md
bigwig for nim
Command Line
bigwig-nim includes a command-line tool distributed as a static binary here. It supports converting bed to bigwig and bigwig to bed and extracting stats (mean, coverage, etc) for regions in a bigwig.
There are other tools to do this, including kentTools which has a more restrictive license and does not supported (b)gzipped input and bwtools which seems to provide similar functionality (but I am not able to build it).
view
To convert a bed with the value in the 4th column to bigwig, use:
Shell
bigwig view $bed_in --value-column 4 --chrom-sizes $fai -O bigwig -o $bigwig_out
bigwig will automatically determine the best data format for each block (fixed span and step or per-base) most of the
CPU time is spent parsing the input bed file.
stats
To get the mean value for a given region (in this case on chromosome 22)
```Shell bigwig stats --stat mean $bigwig 22:145000-155000
or a bed file or regions
bigwig stats --stat mean $bigwig $bed ```
Output is tab-delimited chrom, start, stop, stat for each row in the bed (or just once for the region).
The supported stats are mean, min, max, coverage, sum with a special-case for the stat of header which
shows the chromosomes, lengths and mean coverages for each chromosome in the bigwig file.
Reading
```Nim var bw: BigWig bw.open(path, fmRead)
avoid allocating when possible
var values: seq[float32] bw.values(values, "chr1", 0, 2222)
for iv in bw.intervals("chr2", 999, 88888): # iterator. # tuple[start: int, stop: int, value: float32]
for bigbed
for iv in bw.entries("chr2", 999, 88888): # iterator. # tuple[start: int, stop: int, value: cstring] # value contains "SQL" for bigbed entry.
single value
var m: seq[float32] = bw.stats("chr2", 999, 9999, stat=Stat.mean)
multiple bins:
var L: seq[float32] = bw.stats("chr2", 999, 9999, stat=Stat.min, nBins=10)
echo bw.header # @[(name: "1", length: 195471971, tid: 0'u32), (name: "10", length: 130694993, tid: 1'u32)]
bw.close ```
Writing
```Nim var wtr:BigWig doAssert wtr.open("tests/writer.bw", fmWrite) wtr.setHeader(@[(name:"chr1", length: 2000, tid: 0'u32)]) wtr.writeHeader
add intervals with tuples
wtr.add("chr1", @[(start: 22, stop: 33, value: 0.01'f32), (start: 44, stop: 55, value: 155'f32)])
or with, for example a span of 15 bases:
wtr.add("chr1", 15, @[(start: 20, value: 0.01'f32), (start: 30, value: 155'f32)])
or an array of values with a given span and step:
var values = @[0.1'f32, 0.2, 0.3, 0.4] wtr.add("chr1", 100, values, span=100, step=200) # 100-200 is 0.1, 300-400 is 0.2 ... wtr.close()
```
Owner
- Name: Brent Pedersen
- Login: brentp
- Kind: user
- Location: Oregon, USA
- Twitter: brent_p
- Repositories: 220
- Profile: https://github.com/brentp
Doing genomics
GitHub Events
Total
Last Year
Issues and Pull Requests
Last synced: 11 months ago
All Time
- Total issues: 7
- Total pull requests: 1
- Average time to close issues: 7 days
- Average time to close pull requests: 1 minute
- Total issue authors: 3
- Total pull request authors: 1
- Average comments per issue: 0.86
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 1
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- brentp (5)
- jamigo (1)
- colindaven (1)
Pull Request Authors
- brentp (1)