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 | |
## Location for local build of gmpy2 and deps | |
cd apps | |
mkdir gmpy2 && cd gmpy2 | |
## Download and compile gmp | |
wget https://ftp.gnu.org/gnu/gmp/gmp-5.1.3.tar.bz2 && tar xjf gmp-5.1.3.tar.bz2 | |
cd gmp-5.1.3 | |
./configure --prefix=/home/jmblab/statonse/apps/gmpy2 |
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 | |
# Bash script to download a bunch of *.sra files from the NCBI SRA, using | |
# the aspera client, and extract FASTQ data using the SRA Toolkit. | |
max_bandwidth_mbps=50 | |
# These SRA files are for the durum genome | |
files=( | |
'SRR567512.sra' | |
'SRR567559.sra' |
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
""" | |
08 Nov 2012 | |
""" | |
from string import maketrans | |
REV = maketrans('ATGC', 'TACG') |
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/env perl | |
use strict; | |
use warnings; | |
use Getopt::Long; | |
use Pod::Usage; | |
use Bio::EnsEMBL::Registry; | |
use Bio::EnsEMBL::Utils::Scalar qw(wrap_array); | |
use IO::String; |