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
// Modifies $httpProvider for correct server communication (POST variable format) | |
angular.module('http-post-fix', [], function($httpProvider) { | |
// This code is taken from http://victorblog.com/2012/12/20/make-angularjs-http-service-behave-like-jquery-ajax/ | |
// Use x-www-form-urlencoded Content-Type | |
$httpProvider.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded;charset=utf-8'; | |
// Override $http service's default transformRequest | |
$httpProvider.defaults.transformRequest = [function(data) { | |
/** |
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
/uima-addons-2.3.1/Lucas$ st | |
M src/main/java/org/apache/uima/lucas/indexer/analysis/SplitterFilter.java | |
M pom.xml | |
/uima-addons-2.3.1/Lucas$ svn diff | |
Index: src/main/java/org/apache/uima/lucas/indexer/analysis/SplitterFilter.java | |
=================================================================== | |
--- src/main/java/org/apache/uima/lucas/indexer/analysis/SplitterFilter.java (revision 1347596) | |
+++ src/main/java/org/apache/uima/lucas/indexer/analysis/SplitterFilter.java (working copy) | |
@@ -20,6 +20,7 @@ | |
package org.apache.uima.lucas.indexer.analysis; |
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
function y = psi(x) | |
%DIGAMMA Digamma function. | |
% DIGAMMA(X) returns digamma(x) = d log(gamma(x)) / dx | |
% If X is a matrix, returns the digamma function evaluated at each element. | |
% Reference: | |
% | |
% J Bernardo, | |
% Psi ( Digamma ) Function, | |
% Algorithm AS 103, |
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
package cc.mallet.fst; | |
import java.text.DecimalFormat; | |
import java.util.LinkedList; | |
import java.util.List; | |
import cc.mallet.types.FeatureVector; | |
import cc.mallet.types.Instance; | |
import cc.mallet.types.InstanceList; | |
import cc.mallet.types.Sequence; |
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
#http://techoverflow.net/blog/2013/11/18/a-geneontology-obo-v1.2-parser-in-python/ | |
import go_obo_parser | |
for p in go_obo_parser.parseGOOBO('....../pro.obo'): | |
if 'is_a' in p and p['is_a'] == 'PR:000000001 ! protein': | |
print p['name'] |
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
''' | |
Example of Tornado that autoreloads/watches all files in folder 'static' | |
''' | |
import tornado.ioloop | |
import tornado.web | |
import tornado.autoreload | |
import os | |
''' serves index.html''' |
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 numpy as np | |
import pandas as pd | |
df1 = pd.DataFrame([(1,2),(2,4),(5,6)], columns=['a','b']) | |
df1 | |
df2 = pd.DataFrame([(100,200),(300,400),(500,600)], columns=['a','b']) | |
df2 | |
df_add = df1.add(df2, fill_value=0) | |
df_add |
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
package org.apache.uima.ruta.engine; | |
import static org.junit.Assert.assertEquals; | |
import java.util.Collection; | |
import org.apache.uima.fit.factory.JCasFactory; | |
import org.apache.uima.fit.util.JCasUtil; | |
import org.apache.uima.jcas.JCas; | |
import org.junit.Test; |
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
cc.mallet.types.InstanceList.CrossValidationIterator crossValidationIt = trainingInstanceList.crossValidationIterator(folds, new Random().nextInt()); | |
while (crossValidationIt.hasNext()) { | |
InstanceList[] il = crossValidationIt.nextSplit(); | |
CRF crf = new CRF(trainingInstanceList.getPipe(), null); | |
CRFTrainerByThreadedLabelLikelihood trainer = new CRFTrainerByThreadedLabelLikelihood(crf, threads); | |
// CRFTrainerByLabelLikelihood trainer = new CRFTrainerByLabelLikelihood(crf); | |
MultiSegmentationEvaluator eval = new MyMultiSegmentationEvaluator(// | |
new InstanceList[] { testingSet }, new String[] { "TTesting" }, tags, continueTags); |
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 Bio import Entrez | |
Entrez.email = "[email protected]" | |
handle = Entrez.esearch(db="pubmed", term="pyramidal cell") | |
record = Entrez.read(handle) | |
len(record) # this matches http://www.ncbi.nlm.nih.gov/pubmed/?term=pyramidal%20cell | |
first = record["IdList"][0] | |
# from http://stackoverflow.com/a/20149984/125617 |