d3.svg.legend provides for a simple legend that can be displayed horizontally or vertically and accepts a few different d3 scale types.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [2015-06-26T08:57Z] Timing: organize samples | |
| [2015-06-26T08:57Z] multiprocessing: organize_samples | |
| [2015-06-26T08:57Z] Using input YAML configuration: /home/michael/Documents/projects/exon/config/extest.yaml | |
| [2015-06-26T08:57Z] Checking sample YAML configuration: /home/michael/Documents/projects/exon/config/extest.yaml | |
| [2015-06-26T08:57Z] Testing minimum versions of installed programs | |
| [2015-06-26T08:57Z] Timing: alignment preparation | |
| [2015-06-26T08:57Z] multiprocessing: prep_align_inputs | |
| [2015-06-26T09:55Z] multiprocessing: disambiguate_split | |
| [2015-06-26T09:55Z] Timing: alignment | |
| [2015-06-26T09:55Z] multiprocessing: process_alignment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2015-06-11 14:53:37 +0200 | |
| export FTP_PASSIVE=1 && /home/mpschr/bin/bcbionextgen/tools/Cellar/vep/79_2015-04-13/INSTALL.pl -a a -d /home/mpschr/bin/bcbionextgen/tools/Cellar/vep/79_2015-04-13/lib -c /home/mpschr/bin/bcbionextgen/tools/Cellar/vep/79_2015-04-13/share/data | |
| Using non-default installation directory /home/mpschr/bin/bcbionextgen/tools/Cellar/vep/79_2015-04-13/lib - you will probably need to add /home/mpschr/bin/bcbionextgen/tools/Cellar/vep/79_2015-04-13/lib to your PERL5LIB | |
| Setting up directories | |
| Downloading required files | |
| - fetching ensembl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas | |
| import logging | |
| def multi_df_join(df_dict): | |
| """ | |
| Takes a list of dataframes with the same primary key (id) and merges the columns, using | |
| the dictionary keys as suffixes in case there are conflicts with the column names. | |
| :param df_dict: A dictionary where keys are strings (collision suffixes) and values are DataFrames | |
| :return pandas.DataFrame: The merged data frames |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| date | wounds | other | disease | |
|---|---|---|---|---|
| 5/1854 | 0 | 95 | 105 | |
| 6/1854 | 0 | 40 | 95 | |
| 7/1854 | 0 | 140 | 520 | |
| 8/1854 | 20 | 150 | 800 | |
| 9/1854 | 220 | 230 | 740 | |
| 10/1854 | 305 | 310 | 600 | |
| 11/1854 | 480 | 290 | 820 | |
| 12/1854 | 295 | 310 | 1100 | |
| 1/1855 | 230 | 460 | 1440 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __author__ = "Yasunobu OKAMURA, Michael P SCHROEDER" | |
| __copyright__ = "Copyright (c) 2012 Y.Okamura" | |
| __license__ = "GPL v3+" | |
| import xml.parsers.expat | |
| import networkx as nx | |
| class XGMMLParserHelper(object): | |
| """ | |
| Creates an instance of the XGMML parser that allows to import the |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## Create a script that deletes all the local and remote tags you want. Do | |
| ## not hasten through the process | |
| ## 1. | |
| ## What tags do you want to delete? substitute YOURPATTERN with the pattern you want to match against | |
| git tag -l | awk '/.*YOURPATTERN.*$/ {print "git tag -d "$1"\ngit push origin :refs/tags/"$1}' > delete-tags.sh | |
| ## 2. | |
| ## Check the delete-tags.sh to see if everything is ok. |