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
''' | |
Created on Jun 29, 2010 | |
@author: [email protected] | |
''' | |
from Bio.Seq import Seq | |
import Bio.PDB as PDB | |
import Bio.PDB.Polypeptide as PP | |
from itertools import izip, count |
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
''' | |
Created on Jun 1, 2012 | |
@author: lunt | |
SOME CODE TAKEN FROM: http://stackoverflow.com/questions/3529666/matplotlib-matshow-labels | |
''' | |
import pylab |
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 python | |
''' | |
Created on Jan 18, 2013 | |
@author: lunt | |
''' | |
import sys | |
import Bio.pairwise2 as PW |
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
diff --git a/src/jnet.c b/src/jnet.c | |
index e0cd13e..81df7a9 100644 | |
--- a/src/jnet.c | |
+++ b/src/jnet.c | |
@@ -1144,7 +1144,7 @@ void dopred(alldata *data[],int count,int printsty) | |
if (nohmm == 1 && nopsi == 1){ | |
- fprintf (stderr, "\nWARNING!: Only using the sequence alignment\n Accuracy will average 71.6%\n\n"); | |
+ fprintf (stderr, "\nWARNING!: Only using the sequence alignment\n Accuracy will average 71.6%%\n\n"); |
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
#%Module1.0##################################################################### | |
## | |
## privatemodules modulefile | |
## | |
## An alternative to use.own that lets you have a per-cluster private module directory, | |
## and automatically loads the appropriate one. | |
## | |
## Expects to be installed in ~/.privatemodules/base/privatemodules | |
## | |
proc ModulesHelp { } { |
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
set style data lines | |
set term aqua 1 | |
set title "absolute speed" | |
plot "data" u 3 | |
set term aqua 2 | |
set title "absolute windspeed" | |
plot "data" u 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
#!/usr/bin/env python | |
import scipy as S | |
import scipy.misc as MISC | |
import pylab | |
ticks=100 | |
KP = 26 |
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
#include <Servo.h> | |
/* | |
The buttons switch in a voltage divider so that the left and right buttons both use the same pin. | |
The speed controller is a potentiometer. | |
/* | |
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
require "formula" | |
# Documentation: https://github.com/Homebrew/homebrew/wiki/Formula-Cookbook | |
# /usr/local/Library/Contributions/example-formula.rb | |
# PLEASE REMOVE ALL GENERATED COMMENTS BEFORE SUBMITTING YOUR PULL REQUEST! | |
class Xephem < Formula | |
homepage "" | |
url "http://97.74.56.125/free/xephem-3.7.6.tar.gz" | |
sha1 "2b07e05b7ea1fe72f5f52983a15b34c7f7b2d75b" |
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
import scipy as S | |
import pylab | |
#My Cheap Telescope | |
APPERTURE = 0.114 | |
FOCAL_LENGTH= 0.910 | |
#http://en.wikipedia.org/wiki/Visible_spectrum | |
min_visible = 380e-9 |
OlderNewer