nvictus on v0.9.1
nvictus on master
Patch version bump (compare)
nvictus on master
Keep private export for cooltoo… (compare)
nvictus on master
Replace another cached badge (compare)
nvictus on master
Update readme (compare)
nvictus on master
Update license metadata to text… Change pypi badge to prevent ca… (compare)
nvictus on v0.9.0
nvictus on master
Fix pypi workflow (compare)
nvictus on v0.9.0
nvictus on v0.9.0
nvictus on master
Fix eol (compare)
nvictus on master
Prepare for release (compare)
nvictus on master
Update cli docs (compare)
nvictus on master
Synchronize balance api arg def… [pre-commit.ci] auto fixes from… Expand help for --ignore-dist and 1 more (compare)
So, I am not sure if it is correct to ask but we do these steps
$ cooler makebins $CHROMSIZES_FILE 10000 > bins.10kb.bed
$ cooler cload bins.10kb.bed $CONTACTS_FILE out.cool
As I understood I am getting a cool file which is 10 kb binned. What if I don't want it to be binned and create a cool file ? Does that make sense?
AttributeError Traceback (most recent call last)
<ipython-input-1-8423f6653a05> in <module>()
10
11 where = np.flatnonzero
---> 12 chromsizes = cooler.read_chromsizes('http://s3.amazonaws.com/pkerp/data/mm9/chromInfo.txt') # defaults to reading chr#,X,Y,M
13 chromosomes = list(chromsizes.keys())
14 cumullengths = np.r[0, np.cumsum(chromsizes)]
AttributeError: module 'cooler' has no attribute 'read_chromsizes'
higlass_getter.py
chr10
As I understood I am getting a cool file which is 10 kb binned. What if I don't want it to be binned and create a cool file ? Does that make sense?
So what you are asking for is a binary version of the contact list? Cool files represent contact matrices so by definition they must be binned (i.e. aggregated) some way
cooler digest
can make a fragment-delimited bin file
Hi, I would like to import a bed file in Hi-Glass where it is overlapping intervals of chromosome as following:
id start end mid-point Value
chr1 1 100000 50000 53.696604901
chr1 5001 105000 55000 53.3929395224
chr1 10001 110000 60000 53.393254991
chr1 15001 115000 65000 53.3523366425 ..
as a hitile file. Any suggestion on how should I do this?