├── .DS_Store ├── .gitignore ├── Procfile ├── README.md ├── about.html ├── app.py ├── faq.html ├── generate_stats.py ├── reader.py ├── requirements.txt ├── runtime.txt ├── schema ├── static ├── main.css └── main.js ├── templates ├── 404.html ├── 500.html ├── about.html ├── faq.html ├── footer.html ├── header.html ├── includes.html ├── index.html ├── sideNav.html └── table.html ├── tools.zip └── tools ├── @Note ├── AGTK ├── APLenty ├── AWOCATo ├── AlvisAE ├── Anafora ├── Analec ├── Annotator ├── Anotatornia ├── Argo ├── Atomic ├── BioAnnotate ├── BioQRator ├── Bionotate ├── CCASH ├── CLARIN-EL ├── CRAB reader ├── Cadixe ├── Callisto ├── Cas Editor ├── Catma ├── Coco ├── DOMEO ├── Djangology ├── EULIA ├── EasyRef ├── Egas ├── Ellogon ├── FLAT ├── GATE Teamware ├── GitDOX ├── Glozz ├── GraPAT ├── Hexatomic ├── Hypothesis ├── IBM Knowledge Studio ├── INCEpTION ├── Inforex ├── KAFnotator ├── KCAT ├── Knowtator ├── LightTag ├── MAE ├── MAT ├── MDSWriter ├── MMAX2 ├── Marky ├── MedCATTrainer ├── MyMiner ├── NOMAD ├── ODIN ├── OLLIE ├── PACTE ├── PALinkA ├── PDFAnno ├── PubTator ├── Pundit ├── RAD ├── Redcoat ├── SALTO ├── SANTO ├── SAPIENT ├── SAWT ├── SFA ├── SLATE ├── SMART ├── SYNC3 ├── Semantator ├── Serengeti ├── Slate(1) ├── TALEN ├── TIARA ├── TeamTat ├── TextAE ├── TextAnnotator ├── Textpresso ├── UAM Corpus ├── UniversalAnnotationTool ├── Vogon ├── WARP-Text ├── WASA ├── WAT-SL ├── WebAnno ├── WebAnnotator ├── WordFreak ├── XConc Suite ├── YEDDA ├── brat ├── doccano ├── eHost ├── prodigy └── tagtog /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/README.md -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/about.html -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/app.py -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/faq.html -------------------------------------------------------------------------------- /generate_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/generate_stats.py -------------------------------------------------------------------------------- /reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/reader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.6.1 2 | -------------------------------------------------------------------------------- /schema: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/schema -------------------------------------------------------------------------------- /static/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/static/main.css -------------------------------------------------------------------------------- /static/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/static/main.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/500.html: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/faq.html -------------------------------------------------------------------------------- /templates/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/footer.html -------------------------------------------------------------------------------- /templates/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/header.html -------------------------------------------------------------------------------- /templates/includes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/includes.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/sideNav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/sideNav.html -------------------------------------------------------------------------------- /templates/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/templates/table.html -------------------------------------------------------------------------------- /tools.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools.zip -------------------------------------------------------------------------------- /tools/@Note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/@Note -------------------------------------------------------------------------------- /tools/AGTK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/AGTK -------------------------------------------------------------------------------- /tools/APLenty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/APLenty -------------------------------------------------------------------------------- /tools/AWOCATo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/AWOCATo -------------------------------------------------------------------------------- /tools/AlvisAE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/AlvisAE -------------------------------------------------------------------------------- /tools/Anafora: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Anafora -------------------------------------------------------------------------------- /tools/Analec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Analec -------------------------------------------------------------------------------- /tools/Annotator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Annotator -------------------------------------------------------------------------------- /tools/Anotatornia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Anotatornia -------------------------------------------------------------------------------- /tools/Argo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Argo -------------------------------------------------------------------------------- /tools/Atomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Atomic -------------------------------------------------------------------------------- /tools/BioAnnotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/BioAnnotate -------------------------------------------------------------------------------- /tools/BioQRator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/BioQRator -------------------------------------------------------------------------------- /tools/Bionotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Bionotate -------------------------------------------------------------------------------- /tools/CCASH: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/CCASH -------------------------------------------------------------------------------- /tools/CLARIN-EL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/CLARIN-EL -------------------------------------------------------------------------------- /tools/CRAB reader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/CRAB reader -------------------------------------------------------------------------------- /tools/Cadixe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Cadixe -------------------------------------------------------------------------------- /tools/Callisto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Callisto -------------------------------------------------------------------------------- /tools/Cas Editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Cas Editor -------------------------------------------------------------------------------- /tools/Catma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Catma -------------------------------------------------------------------------------- /tools/Coco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Coco -------------------------------------------------------------------------------- /tools/DOMEO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/DOMEO -------------------------------------------------------------------------------- /tools/Djangology: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Djangology -------------------------------------------------------------------------------- /tools/EULIA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/EULIA -------------------------------------------------------------------------------- /tools/EasyRef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/EasyRef -------------------------------------------------------------------------------- /tools/Egas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Egas -------------------------------------------------------------------------------- /tools/Ellogon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Ellogon -------------------------------------------------------------------------------- /tools/FLAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/FLAT -------------------------------------------------------------------------------- /tools/GATE Teamware: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/GATE Teamware -------------------------------------------------------------------------------- /tools/GitDOX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/GitDOX -------------------------------------------------------------------------------- /tools/Glozz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Glozz -------------------------------------------------------------------------------- /tools/GraPAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/GraPAT -------------------------------------------------------------------------------- /tools/Hexatomic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Hexatomic -------------------------------------------------------------------------------- /tools/Hypothesis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Hypothesis -------------------------------------------------------------------------------- /tools/IBM Knowledge Studio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/IBM Knowledge Studio -------------------------------------------------------------------------------- /tools/INCEpTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/INCEpTION -------------------------------------------------------------------------------- /tools/Inforex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Inforex -------------------------------------------------------------------------------- /tools/KAFnotator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/KAFnotator -------------------------------------------------------------------------------- /tools/KCAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/KCAT -------------------------------------------------------------------------------- /tools/Knowtator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Knowtator -------------------------------------------------------------------------------- /tools/LightTag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/LightTag -------------------------------------------------------------------------------- /tools/MAE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MAE -------------------------------------------------------------------------------- /tools/MAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MAT -------------------------------------------------------------------------------- /tools/MDSWriter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MDSWriter -------------------------------------------------------------------------------- /tools/MMAX2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MMAX2 -------------------------------------------------------------------------------- /tools/Marky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Marky -------------------------------------------------------------------------------- /tools/MedCATTrainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MedCATTrainer -------------------------------------------------------------------------------- /tools/MyMiner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/MyMiner -------------------------------------------------------------------------------- /tools/NOMAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/NOMAD -------------------------------------------------------------------------------- /tools/ODIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/ODIN -------------------------------------------------------------------------------- /tools/OLLIE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/OLLIE -------------------------------------------------------------------------------- /tools/PACTE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/PACTE -------------------------------------------------------------------------------- /tools/PALinkA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/PALinkA -------------------------------------------------------------------------------- /tools/PDFAnno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/PDFAnno -------------------------------------------------------------------------------- /tools/PubTator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/PubTator -------------------------------------------------------------------------------- /tools/Pundit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Pundit -------------------------------------------------------------------------------- /tools/RAD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/RAD -------------------------------------------------------------------------------- /tools/Redcoat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Redcoat -------------------------------------------------------------------------------- /tools/SALTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SALTO -------------------------------------------------------------------------------- /tools/SANTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SANTO -------------------------------------------------------------------------------- /tools/SAPIENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SAPIENT -------------------------------------------------------------------------------- /tools/SAWT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SAWT -------------------------------------------------------------------------------- /tools/SFA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SFA -------------------------------------------------------------------------------- /tools/SLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SLATE -------------------------------------------------------------------------------- /tools/SMART: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SMART -------------------------------------------------------------------------------- /tools/SYNC3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/SYNC3 -------------------------------------------------------------------------------- /tools/Semantator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Semantator -------------------------------------------------------------------------------- /tools/Serengeti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Serengeti -------------------------------------------------------------------------------- /tools/Slate(1): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Slate(1) -------------------------------------------------------------------------------- /tools/TALEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/TALEN -------------------------------------------------------------------------------- /tools/TIARA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/TIARA -------------------------------------------------------------------------------- /tools/TeamTat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/TeamTat -------------------------------------------------------------------------------- /tools/TextAE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/TextAE -------------------------------------------------------------------------------- /tools/TextAnnotator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/TextAnnotator -------------------------------------------------------------------------------- /tools/Textpresso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Textpresso -------------------------------------------------------------------------------- /tools/UAM Corpus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/UAM Corpus -------------------------------------------------------------------------------- /tools/UniversalAnnotationTool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/UniversalAnnotationTool -------------------------------------------------------------------------------- /tools/Vogon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/Vogon -------------------------------------------------------------------------------- /tools/WARP-Text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WARP-Text -------------------------------------------------------------------------------- /tools/WASA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WASA -------------------------------------------------------------------------------- /tools/WAT-SL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WAT-SL -------------------------------------------------------------------------------- /tools/WebAnno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WebAnno -------------------------------------------------------------------------------- /tools/WebAnnotator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WebAnnotator -------------------------------------------------------------------------------- /tools/WordFreak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/WordFreak -------------------------------------------------------------------------------- /tools/XConc Suite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/XConc Suite -------------------------------------------------------------------------------- /tools/YEDDA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/YEDDA -------------------------------------------------------------------------------- /tools/brat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/brat -------------------------------------------------------------------------------- /tools/doccano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/doccano -------------------------------------------------------------------------------- /tools/eHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/eHost -------------------------------------------------------------------------------- /tools/prodigy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/prodigy -------------------------------------------------------------------------------- /tools/tagtog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariananeves/annotation-tools/HEAD/tools/tagtog --------------------------------------------------------------------------------