scikit-bio-cookbook
scikit-bio-cookbook copied to clipboard
Recipes for bioinformatics analyses with scikit-bio
@gregcaporaso and I were chatting (offline and in https://github.com/biocore/scikit-bio/issues/764) about adding a recipe showing how to visualize "within" vs "between" distances using scikit-bio (`DistanceMatrix`), pandas, and seaborn's boxplots. This recipe...
See [here](http://stanford.edu/~mwaskom/software/seaborn/examples/structured_heatmap.html#structured-heatmap). This depends on porting the biom table to skbio.
Depends on skbio's [#636](https://github.com/biocore/scikit-bio/pull/636).
For example, we could look for associations between the geographic distribution of viruses and phylogeny. This could be done by computing euclidean distances between where (geographically) a particular viral strain...
This could take as input an alignment of functional RNA molecule sequences, and output a matrix of mutual information scores for all pairs of positions in the alignment. That matrix...