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 | |
#SBATCH -p gpu | |
#SBATCH -e tensorflow.%j.err | |
#SBATCH -o tensorflow.%j.out | |
#SBATCH -t 48:00:00 | |
#SBATCH -n 1 | |
#SBATCH --mem=32G | |
#SBATCH --gres=gpu:1 | |
#so we can use modules |
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 | |
#SBATCH -p gpu | |
#SBATCH -e tensorflow.%j.err | |
#SBATCH -o tensorflow.%j.out | |
#SBATCH -t 48:00:00 | |
#SBATCH -n 1 | |
#SBATCH --mem=32G | |
#SBATCH --gres=gpu:1 | |
#so we can use modules |
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 | |
scontrol show jobid $1 | grep StdOut | cut -d"=" -f2 | xargs tail |
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 os import path | |
import os | |
from scipy.misc import imread | |
import matplotlib.pyplot as plt | |
import random | |
import urllib | |
from wordcloud import WordCloud, STOPWORDS |
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
#!/usr/bin/python | |
from time import gmtime, strftime | |
today=strftime("%Y%m%d") | |
now=strftime("%H:%M:%S") | |
output_file = today + '.txt' | |
fid = open( output_file, 'a' ) | |
#----------------------------------------------------------------------- | |
# twitter-trends |
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
FILE=img1.tif | |
if [ -f $FILE ]; then | |
echo "File "$FILE" exists." | |
else | |
echo "File "$FILE" does not exist." | |
exit -1 | |
fi |
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
addpath( 'OMERO.matlab-5.2.2-ice35-b17' ) | |
server = 'localhost'; | |
port = 4064; | |
username = 'murphylab'; | |
password = 'murphylab'; | |
client = loadOmero( server, port ); | |
session = client.createSession( username, password ); |
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
digraph demo2D00_calls { | |
rankdir="LR" | |
node [shape=box, color=blue] | |
demo2D00 -> ml_initparam; | |
demo2D00 -> slml2img; | |
AdjustResolutions -> tp_stretch3d; | |
AverageEnergy -> est_curv; | |
CompressLib -> packableObject; | |
Greedy3D_integration_compressed -> Greedy3D_compressed_default_options; | |
Greedy3D_integration_compressed -> Greedy3D_single_step_compressed; |
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 | |
##make virtual environment | |
virtualenv --system-site-packages . | |
##activate virtual environment | |
source ./bin/activate | |
#get biopython | |
pip install -U biopython |
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 | |
##this is an example described in section 2.4.1 | |
##http://biopython.org/DIST/docs/tutorial/Tutorial.html#htoc10 | |
wget -nc http://biopython.org/DIST/docs/tutorial/examples/ls_orchid.fasta | |
echo " | |
from Bio import SeqIO | |
for seq_record in SeqIO.parse("ls_orchid.fasta", "fasta"): |