Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
#!/usr/bin/env perl6 | |
# a minimal Stockholm alignment format parser that reads | |
# ONLY single-line alignments and dumps each sequence (without additional | |
# gap characters) to a file | |
use Grammar::Tracer; | |
grammar StockholmParser { | |
token TOP { <header>+ <alignment> <consensus> <sep>? <.eol> } |
This file contains 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
Zasha Weinberg is looking for a PhD candidate in RNA bioinformatics |
This file contains 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 | |
chromsizes="./chrom.sizes" | |
genomeCoverageBed=`which genomeCoverageBed` | |
bedGraphToBigWig=`which bedGraphToBigWig` | |
vis="./vis" | |
samples=9 | |
fromsample=1 | |
rep=2 | |
fromrep=1 |
This file contains 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 | |
cutadapt=`which cutadapt` | |
fastqc=`which fastqc` | |
bam2fastq=`which bam2fastq` | |
gzip=`which gzip` | |
origdir="." | |
results="cutadapt" | |
fastqcdir="${results}/FastQC" | |
adapter5="AATGATACGGCGACCACCGAGATCTACACTCTTTCCCTACACGACGCTCTTCCGATCT" |
This file contains 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 | |
bamdir="./" | |
cufflinks=`which cufflinks` | |
annotation="foo.gtf" | |
threads=40 | |
label_RABT="CUFFRABT" | |
label_denovo="CUFFDENOVO" | |
for BAM in $(ls $bamdir/*.bam) | |
do |
This file contains 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
dateformat 4 |
This file contains 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 | |
cutadapt=`which cutadapt` | |
fastqc=`which fastqc` | |
bam2fastq=`which bam2fastq` | |
gzip=`which gzip` | |
origdir="." | |
results="cutadapt" | |
fastqcdir="${results}/FastQC" | |
adapter5="CTACACTCTTTCCCTACACGACGCTCTTCCGATCT" |
This file contains 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 | |
samdir="./" | |
dexseq_flat_gff="my.DEXSeq.gff" | |
outdir="./dexseq-count" | |
dexseq_count="python /home/foo/bin/dexseq_count.py" | |
samtools=`which samtools` | |
if ! [ -d "$outdir" ]; | |
then | |
mkdir -p $outdir |
This file contains 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 | |
cutadapt=`which cutadapt` | |
fastqc=`which fastqc` | |
origdir=".." | |
results="." | |
fastqcdir="${results}/FastQC" | |
adapter5="CTACACTCTTTCCCTACACGACGCTCTTCCGATCT" | |
adapter3="GATCGGAAGAGCACACGTCTGAACTCCAGTCAC" | |
inprefix="C" |
NewerOlder