├── faq.css
├── .gitignore
├── h1-p
├── gene.dev.head
├── gene.key.head
├── gene.train.head
├── gene.train.head2
├── hash.js
├── tag.html
├── HashSpec.js
├── emission_count.html
├── index.html
├── viterbi.html
├── count.html
├── submit.py
├── count_freqs.py
├── viterbi.js
├── ViterbiSpec.js
└── eval_gene_tagger.py
├── mergeupstream.sh
├── thirdparty
├── jasmine-standalone-1.3.1
│ ├── .DS_Store
│ ├── src
│ │ ├── Song.js
│ │ └── Player.js
│ ├── spec
│ │ ├── SpecHelper.js
│ │ └── PlayerSpec.js
│ └── lib
│ │ └── jasmine-1.3.1
│ │ ├── MIT.LICENSE
│ │ └── jasmine.css
├── jquery.rules.rdfs.js
├── jquery.rdf.json.js
├── qunit-1.10.0.css
├── jquery.icndb.js
├── removeStopWords.js
├── jquery.uri.js
├── jquery.xmlns.js
├── jquery.curie.js
├── jquery.datatype.js
├── jquery.rules.js
└── jquery.rdf.xml.js
├── initial_kb.txt
├── faq.js
├── index.html
├── tests.js
├── qunit.html
├── faq.html
├── jasmine.html
├── storageSpec.js
├── README.md
├── querySpec.js
├── storage.js
└── query.js
/faq.css:
--------------------------------------------------------------------------------
1 | #history{
2 | width:100%;
3 | height:100%;
4 | }
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | h1-p/gene_test.p1.out
3 | h1-p/*.pdf
4 | joke.json
5 | */.DS_Store
6 | *~
7 |
--------------------------------------------------------------------------------
/h1-p/gene.dev.head:
--------------------------------------------------------------------------------
1 | BACKGROUND
2 | :
3 | Ischemic
4 | heart
5 | disease
6 | is
7 | the
8 | primary
9 | cause
10 | of
11 |
--------------------------------------------------------------------------------
/mergeupstream.sh:
--------------------------------------------------------------------------------
1 | #! /bin/bash
2 | git fetch upstream
3 | git checkout master
4 | git merge upstream/master
5 | git push origin master
--------------------------------------------------------------------------------
/thirdparty/jasmine-standalone-1.3.1/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tansaku/faqbot/HEAD/thirdparty/jasmine-standalone-1.3.1/.DS_Store
--------------------------------------------------------------------------------
/h1-p/gene.key.head:
--------------------------------------------------------------------------------
1 | BACKGROUND O
2 | : O
3 | Ischemic O
4 | heart O
5 | disease O
6 | is O
7 | the O
8 | primary O
9 | cause O
10 | of O
11 |
--------------------------------------------------------------------------------
/h1-p/gene.train.head:
--------------------------------------------------------------------------------
1 | Comparison O
2 | Comparison O
3 | with O
4 | alkaline I-GENE
5 | phosphatases I-GENE
6 | and O
7 | 5 I-GENE
8 | - I-GENE
9 | nucleotidase I-GENE
10 |
11 | Pharmacologic O
12 |
--------------------------------------------------------------------------------
/thirdparty/jasmine-standalone-1.3.1/src/Song.js:
--------------------------------------------------------------------------------
1 | function Song() {
2 | }
3 |
4 | Song.prototype.persistFavoriteStatus = function(value) {
5 | // something complicated
6 | throw new Error("not yet implemented");
7 | };
--------------------------------------------------------------------------------
/thirdparty/jasmine-standalone-1.3.1/spec/SpecHelper.js:
--------------------------------------------------------------------------------
1 | beforeEach(function() {
2 | this.addMatchers({
3 | toBePlaying: function(expectedSong) {
4 | var player = this.actual;
5 | return player.currentlyPlayingSong === expectedSong &&
6 | player.isPlaying;
7 | }
8 | });
9 | });
10 |
--------------------------------------------------------------------------------
/initial_kb.txt:
--------------------------------------------------------------------------------
1 | # We'll use the FOAF vocabularly to represent people
2 | # http://en.wikipedia.org/wiki/FOAF_%28software%29
3 | @prefix foaf: