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
| from __future__ import print_function | |
| import sys | |
| import re | |
| from selenium import webdriver | |
| from random import randint | |
| from time import sleep | |
| dr = webdriver.PhantomJS() | |
| #dr.get('http://www.genecards.org') |
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 sys | |
| import requests | |
| # print urls of fastq files to download | |
| # obtain access token by following instructions here: | |
| # https://support.basespace.illumina.com/knowledgebase/articles/403618-python-run-downloader | |
| AccessToken=sys.argv[1] | |
| # user |
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
| melt(data.matrix(X))->m2 |
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
| #!/bin/bash | |
| #CADDpath="`dirname \"$0\"`" | |
| #CADDpath="`( cd \"$CADDpath/..\" && pwd )`" | |
| set +x | |
| CADDpath=/share/apps/genomics/CADD_v1.3/ | |
| if [ -z "$VEPpath" ] ; then source ${CADDpath}/bin/config.sh; fi | |
| echo $VEPpath | |
| NCORES=`expr $(lscpu | grep '^CPU(s):' | cut -f2 -d: | tr -d ' ') - 2` |
OlderNewer