Can't find cooler file after loading in data
See original GitHub issueI used this command:
cooler load -f coo chromsizes.tsv:1 output.tsv matrix.cool --count-as-float
but afterwards no matrix.cool file appeared in my current directory or anywhere on my machine. Here is the file I tried to convert: output.tsv
Thanks in advance!
Issue Analytics
- State:
- Created 5 years ago
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Can't find cooler file after loading in data · Issue #127 - GitHub
I used this command: cooler load -f coo chromsizes.tsv:1 output.tsv matrix.cool --count-as-float but afterwards no matrix.cool file appeared ...
Read more >CLI Reference — cooler 0.8.11 documentation
cooler cload pairs¶. Bin any text file or stream of pairs. Pairs data need not be sorted. Accepts compressed files. To pipe input...
Read more >cooler Documentation - Read the Docs
Cooler is a Python support library for .cool/.mcool files: an efficient storage format for high resolution genomic interaction matrices.
Read more >cooler2bedpe: Read a .cool file into R and output the data in ...
This function will dump the contents of the file and format them into BEDPE format in R. The resulting object cant then be...
Read more >Kernels not finding input files | Data Science and ... - Kaggle
On the kernels in Quora (duplicate of duplicates), I'm getting this: FileNotFoundError: File b'../input/train.csv' does not exist.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It looks like there’s a mismatch between the matrix you’re asking for (1kb resolution) and the one you are providing… it looks like it might be restriction fragment-delimited? You would have to provide a bed file with the bin segmentation that was used.
If your goal was to aggregate that matrix to 1kb, then try
cooler cload pairs
:I used the following chrom sizes and it worked:
Thank you!