Benjamin Schuster-Boeckler
Benjamin Schuster-Boeckler
I ran `MethylDackel mbias` on a WGBS file (mapped with bwameth.py) and got: ``` >$ MethylDackel mbias -@ 4 -q 5 -r chr7 hg38.fa GSM4505863_md.bam GSM4505863_mbias_chr7 Suggested inclusion options: --OT...
I'm making a separate issue from #101 here since this is not a bug but a question, really: I have a directional library of ~140 bp reads after adapter and...
`MethylDackel extract --help` says: ``` --OT INT,INT,INT,INT Inclusion bounds for methylation calls from reads/pairs originating from the original top strand. Suggested values can be obtained from the MBias program. Each...
Hi Renaud, I'm trying to reproduce a clustering similar to the one described in [this paper](http://www.sciencedirect.com/science/article/pii/S2211124712004330). I believe that the first part of their algorithm is identical to a `nmf`...
**Is your feature request related to a problem? Please describe.** I'm trying to use our business Dropbox account to store folders that contain research analysis files. Working in biological data...
**Describe the bug** Dropbox recently changed how folders are organised for business accounts. The top-level directory in the dropbox root directory is not writeable to the user any more, but...
I am trying to perform cross validation of a RandomForest like this: ```rust let cv_score = cross_validate( RandomForestClassifier::new(), x_train, y_train, RandomForestClassifierParameters::default() .with_criterion(SplitCriterion::ClassificationError) .with_n_trees(*n_tree) .with_m(*m_feat) .with_min_samples_split(*m_split) .with_min_samples_leaf(*m_leaf), &KFold::default().with_n_splits(5), &precision ).unwrap(); ```...
First of all: thanks for making this great library available! We're using the Rust wrapper in a tool that aligns DNA reads from a custom PacBio analysis. We have a...