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
| ''' | |
| Infix calculator | |
| First tokenize infix expression, | |
| then transform it into postfix, | |
| then calculate it. | |
| E.g.: | |
| 9 - 5 + 2 * 3 | |
| => 9 5 - 2 3 * + | |
| ''' | |
| import re |
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
| # Eric Minikel | |
| # CureFFI.org | |
| # 2013-07-04 | |
| # Bash script to generate FPKMs from Ensembl Human Bodymap 2.0 RNA-seq data | |
| # Announcement of Human BodyMap 2.0 data availability: http://www.ensembl.info/blog/2011/05/24/human-bodymap-2-0-data-from-illumina/ | |
| # BAM list: ftp://ftp.ensembl.org/pub/release-70/bam/homo_sapiens/genebuild/ | |
| # STEP 1: DOWNLOAD THE BAMS FROM ENSEMBL |