├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── controllers │ ├── DefaultController.scala │ ├── FileController.scala │ ├── GraphQlController.scala │ ├── HealthController.scala │ ├── external │ │ └── athanor │ │ │ └── AthanorClient.scala │ └── handlers │ │ ├── BatchAnalysisHandler.scala │ │ ├── CorpusAnalysisHandler.scala │ │ ├── ExternalAnalysisHandler.scala │ │ ├── GenericHandler.scala │ │ └── TextAnalysisHandler.scala ├── models │ ├── GraphqlSchema.scala │ ├── HealthStatus.scala │ └── graphql │ │ ├── FieldDocs.scala │ │ ├── Fields.scala │ │ └── GraphqlActions.scala ├── modules │ └── AsyncAnalysisActorInitialiser.scala └── views │ ├── GenericPage.scala │ ├── GraphiqlPage.scala │ ├── HomePage.scala │ ├── Includes.scala │ └── QueriesPage.scala ├── conf ├── application.conf └── routes ├── docs ├── api │ ├── akka │ │ ├── index.html │ │ └── pattern │ │ │ └── index.html │ ├── controllers │ │ ├── DefaultController.html │ │ ├── FileController.html │ │ ├── GraphQlController.html │ │ ├── HealthController.html │ │ ├── ReverseAssets.html │ │ ├── ReverseDefaultController.html │ │ ├── ReverseFileController.html │ │ ├── ReverseGraphQlController.html │ │ ├── ReverseHealthController.html │ │ ├── external │ │ │ ├── athanor │ │ │ │ ├── AthanorClient$AthanorMsg.html │ │ │ │ ├── AthanorClient.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── handlers │ │ │ ├── BatchAnalysisHandler.html │ │ │ ├── CorpusAnalysisHandler$.html │ │ │ ├── ExternalAnalysisHandler.html │ │ │ ├── GenericHandler.html │ │ │ ├── TextAnalysisHandler.html │ │ │ └── index.html │ │ ├── index.html │ │ ├── javascript │ │ │ ├── ReverseAssets.html │ │ │ ├── ReverseDefaultController.html │ │ │ ├── ReverseFileController.html │ │ │ ├── ReverseGraphQlController.html │ │ │ ├── ReverseHealthController.html │ │ │ └── index.html │ │ └── routes.html │ ├── index.html │ ├── index.js │ ├── io │ │ ├── heta │ │ │ ├── BuildInfo$.html │ │ │ ├── index.html │ │ │ └── tap │ │ │ │ ├── analysis │ │ │ │ ├── Lexicons$.html │ │ │ │ ├── Syllable$.html │ │ │ │ ├── affectlexicon │ │ │ │ │ ├── AffectLexicon$$Affect.html │ │ │ │ │ ├── AffectLexicon$.html │ │ │ │ │ └── index.html │ │ │ │ ├── batch │ │ │ │ │ ├── AwsS3Client.html │ │ │ │ │ ├── BatchActor$$AnalyseSource.html │ │ │ │ │ ├── BatchActor$$AnalysisRequest.html │ │ │ │ │ ├── BatchActor$$CheckProgress.html │ │ │ │ │ ├── BatchActor$$INIT$.html │ │ │ │ │ ├── BatchActor$$ResultMessage.html │ │ │ │ │ ├── BatchActor$.html │ │ │ │ │ ├── BatchActor.html │ │ │ │ │ └── index.html │ │ │ │ ├── clu │ │ │ │ │ ├── CluAnnotatorActor$$AnnotateRequest.html │ │ │ │ │ ├── CluAnnotatorActor$$INIT$.html │ │ │ │ │ ├── CluAnnotatorActor$$Request.html │ │ │ │ │ ├── CluAnnotatorActor$.html │ │ │ │ │ ├── CluAnnotatorActor.html │ │ │ │ │ └── index.html │ │ │ │ ├── expression │ │ │ │ │ ├── ExpressionAnalyser$.html │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── languagetool │ │ │ │ │ ├── Languages.html │ │ │ │ │ ├── Speller$.html │ │ │ │ │ └── index.html │ │ │ │ ├── reflectiveExpressions │ │ │ │ │ ├── PhraseTag$.html │ │ │ │ │ ├── PosTagAnalyser$.html │ │ │ │ │ └── index.html │ │ │ │ ├── textshapes │ │ │ │ │ ├── AbstractShape.html │ │ │ │ │ ├── TfIdfShape$.html │ │ │ │ │ └── index.html │ │ │ │ └── wordvector │ │ │ │ │ ├── WordVectorActor$$INIT$.html │ │ │ │ │ ├── WordVectorActor$$getNearestWords.html │ │ │ │ │ ├── WordVectorActor$.html │ │ │ │ │ ├── WordVectorActor.html │ │ │ │ │ └── index.html │ │ │ │ ├── client │ │ │ │ ├── ClientApp$.html │ │ │ │ ├── GraphiQLClient$.html │ │ │ │ ├── GraphiQLQueries$.html │ │ │ │ ├── GraphiqlSetup$.html │ │ │ │ └── index.html │ │ │ │ ├── data │ │ │ │ ├── CustomTypes$.html │ │ │ │ ├── doc │ │ │ │ │ ├── Analytics.html │ │ │ │ │ ├── Metrics$.html │ │ │ │ │ ├── Metrics.html │ │ │ │ │ ├── PosStats$.html │ │ │ │ │ ├── PosStats.html │ │ │ │ │ ├── Sentence$.html │ │ │ │ │ ├── Sentence.html │ │ │ │ │ ├── Syllables$.html │ │ │ │ │ ├── Syllables.html │ │ │ │ │ ├── Token$.html │ │ │ │ │ ├── Token.html │ │ │ │ │ ├── expression │ │ │ │ │ │ ├── EpistemicExpression$.html │ │ │ │ │ │ ├── EpistemicExpression.html │ │ │ │ │ │ ├── Expression.html │ │ │ │ │ │ ├── Expressions$.html │ │ │ │ │ │ ├── Expressions.html │ │ │ │ │ │ ├── ModalExpression$.html │ │ │ │ │ │ ├── ModalExpression.html │ │ │ │ │ │ ├── affect │ │ │ │ │ │ │ ├── AffectExpression$.html │ │ │ │ │ │ │ ├── AffectExpression.html │ │ │ │ │ │ │ ├── AffectExpressions$.html │ │ │ │ │ │ │ ├── AffectExpressions.html │ │ │ │ │ │ │ ├── AffectThresholds$.html │ │ │ │ │ │ │ ├── AffectThresholds.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── reflect │ │ │ │ │ │ │ ├── CodedSentence$.html │ │ │ │ │ │ │ ├── CodedSentence.html │ │ │ │ │ │ │ ├── MetaTagSummary$.html │ │ │ │ │ │ │ ├── MetaTagSummary.html │ │ │ │ │ │ │ ├── PhraseTagSummary$.html │ │ │ │ │ │ │ ├── PhraseTagSummary.html │ │ │ │ │ │ │ ├── ReflectExpressions$.html │ │ │ │ │ │ │ ├── ReflectExpressions.html │ │ │ │ │ │ │ ├── SentencePhrase$.html │ │ │ │ │ │ │ ├── SentencePhrase.html │ │ │ │ │ │ │ ├── SentencePhrasesTags$.html │ │ │ │ │ │ │ ├── SentencePhrasesTags.html │ │ │ │ │ │ │ ├── Summary$.html │ │ │ │ │ │ │ ├── Summary.html │ │ │ │ │ │ │ ├── WordSentenceCounts$.html │ │ │ │ │ │ │ ├── WordSentenceCounts.html │ │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── spell │ │ │ │ │ │ ├── Spell$.html │ │ │ │ │ │ ├── Spell.html │ │ │ │ │ │ ├── Spelling$.html │ │ │ │ │ │ ├── Spelling.html │ │ │ │ │ │ └── index.html │ │ │ │ │ └── vocabulary │ │ │ │ │ │ ├── TermCount$.html │ │ │ │ │ │ ├── TermCount.html │ │ │ │ │ │ ├── Vocabulary$.html │ │ │ │ │ │ ├── Vocabulary.html │ │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── results │ │ │ │ │ ├── AffectExpressionsResult$.html │ │ │ │ │ ├── AffectExpressionsResult.html │ │ │ │ │ ├── Batch.html │ │ │ │ │ ├── BatchResult$.html │ │ │ │ │ ├── BatchResult.html │ │ │ │ │ ├── ExpressionsResult$.html │ │ │ │ │ ├── ExpressionsResult.html │ │ │ │ │ ├── MetricsResult$.html │ │ │ │ │ ├── MetricsResult.html │ │ │ │ │ ├── PosStatsResult$.html │ │ │ │ │ ├── PosStatsResult.html │ │ │ │ │ ├── ReflectExpressionsResult$.html │ │ │ │ │ ├── ReflectExpressionsResult.html │ │ │ │ │ ├── Result.html │ │ │ │ │ ├── SentencesResult$.html │ │ │ │ │ ├── SentencesResult.html │ │ │ │ │ ├── SpellingResult$.html │ │ │ │ │ ├── SpellingResult.html │ │ │ │ │ ├── StringListResult.html │ │ │ │ │ ├── StringResult.html │ │ │ │ │ ├── SyllablesResult$.html │ │ │ │ │ ├── SyllablesResult.html │ │ │ │ │ ├── VocabularyResult$.html │ │ │ │ │ ├── VocabularyResult.html │ │ │ │ │ └── index.html │ │ │ │ ├── gradebook │ │ │ │ ├── GradebookParser.html │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ ├── io │ │ │ │ ├── Local$$CorpusFile.html │ │ │ │ ├── Local$.html │ │ │ │ └── index.html │ │ │ │ ├── message │ │ │ │ ├── Exception$$UnknownAnalysisType.html │ │ │ │ ├── Exception$.html │ │ │ │ └── index.html │ │ │ │ ├── pipelines │ │ │ │ ├── Annotating$Pipeline$.html │ │ │ │ ├── Annotating.html │ │ │ │ ├── AnnotatingTypes$.html │ │ │ │ ├── Cleaning$CharFilter$.html │ │ │ │ ├── Cleaning$Hyphen$.html │ │ │ │ ├── Cleaning$Pipeline$.html │ │ │ │ ├── Cleaning$Quote$.html │ │ │ │ ├── Cleaning$Replace$.html │ │ │ │ ├── Cleaning$White$.html │ │ │ │ ├── Cleaning.html │ │ │ │ ├── Pipe$.html │ │ │ │ ├── Segment$.html │ │ │ │ ├── Tfidf$.html │ │ │ │ ├── index.html │ │ │ │ └── materialize │ │ │ │ │ ├── ByteStringPipeline.html │ │ │ │ │ ├── CorpusPipeline.html │ │ │ │ │ ├── CorpusPipelineIter.html │ │ │ │ │ ├── FilePipeline$$File.html │ │ │ │ │ ├── FilePipeline$$FileInfo.html │ │ │ │ │ ├── FilePipeline$.html │ │ │ │ │ ├── FilePipeline.html │ │ │ │ │ ├── Pipeline.html │ │ │ │ │ ├── PipelineContext$.html │ │ │ │ │ ├── TextPipeline.html │ │ │ │ │ └── index.html │ │ │ │ └── util │ │ │ │ ├── AppConfig$.html │ │ │ │ ├── AppConfig.html │ │ │ │ ├── StringUtil$.html │ │ │ │ └── index.html │ │ └── index.html │ ├── lib │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── abstract_type.svg │ │ ├── class.svg │ │ ├── class_comp.svg │ │ ├── class_diagram.png │ │ ├── diagrams.css │ │ ├── diagrams.js │ │ ├── index.css │ │ ├── index.js │ │ ├── jquery.js │ │ ├── jquery.mousewheel.min.js │ │ ├── jquery.panzoom.min.js │ │ ├── lato-v11-latin-100.eot │ │ ├── lato-v11-latin-100.ttf │ │ ├── lato-v11-latin-100.woff │ │ ├── lato-v11-latin-regular.eot │ │ ├── lato-v11-latin-regular.ttf │ │ ├── lato-v11-latin-regular.woff │ │ ├── modernizr.custom.js │ │ ├── object.svg │ │ ├── object_comp.svg │ │ ├── object_comp_trait.svg │ │ ├── object_diagram.png │ │ ├── open-sans-v13-latin-400i.eot │ │ ├── open-sans-v13-latin-400i.ttf │ │ ├── open-sans-v13-latin-400i.woff │ │ ├── open-sans-v13-latin-700.eot │ │ ├── open-sans-v13-latin-700.ttf │ │ ├── open-sans-v13-latin-700.woff │ │ ├── open-sans-v13-latin-700i.eot │ │ ├── open-sans-v13-latin-700i.ttf │ │ ├── open-sans-v13-latin-700i.woff │ │ ├── open-sans-v13-latin-regular.eot │ │ ├── open-sans-v13-latin-regular.ttf │ │ ├── open-sans-v13-latin-regular.woff │ │ ├── ownderbg2.gif │ │ ├── ownerbg.gif │ │ ├── ownerbg2.gif │ │ ├── package.svg │ │ ├── ref-index.css │ │ ├── scheduler.js │ │ ├── source-code-pro-v6-latin-700.eot │ │ ├── source-code-pro-v6-latin-700.ttf │ │ ├── source-code-pro-v6-latin-700.woff │ │ ├── source-code-pro-v6-latin-regular.eot │ │ ├── source-code-pro-v6-latin-regular.ttf │ │ ├── source-code-pro-v6-latin-regular.woff │ │ ├── template.css │ │ ├── template.js │ │ ├── tools.tooltip.js │ │ ├── trait.svg │ │ ├── trait_comp.svg │ │ ├── trait_diagram.png │ │ └── type_diagram.png │ ├── models │ │ ├── GraphqlSchema.html │ │ ├── HealthStatus.html │ │ ├── graphql │ │ │ ├── FieldDocs$$FieldDoc.html │ │ │ ├── FieldDocs$.html │ │ │ ├── Fields$$AffectExpressionsField$.html │ │ │ ├── Fields$$AnnotationsField$.html │ │ │ ├── Fields$$BatchField$.html │ │ │ ├── Fields$$CleanField$.html │ │ │ ├── Fields$$ExpressionsField$.html │ │ │ ├── Fields$$FieldTypes$.html │ │ │ ├── Fields$$MetricsField$.html │ │ │ ├── Fields$$PosStatsField$.html │ │ │ ├── Fields$$ReflectExpressionsField$.html │ │ │ ├── Fields$$RhetoricalMovesField$.html │ │ │ ├── Fields$$SpellingField$.html │ │ │ ├── Fields$$SyllablesField$.html │ │ │ ├── Fields$$VocabularyField$.html │ │ │ ├── Fields$.html │ │ │ ├── GraphqlActions.html │ │ │ └── index.html │ │ └── index.html │ ├── modules │ │ ├── AsyncAnalysisActorInitialiser.html │ │ └── index.html │ ├── router │ │ ├── Routes.html │ │ ├── RoutesPrefix$.html │ │ └── index.html │ ├── tap │ │ ├── index.html │ │ └── services │ │ │ ├── corpora │ │ │ ├── gradebook │ │ │ │ ├── data │ │ │ │ │ ├── ArchiveFileNameProperties.html │ │ │ │ │ ├── ArchiveFilePaths.html │ │ │ │ │ ├── ArchiveMetadata.html │ │ │ │ │ ├── FileMetadata.html │ │ │ │ │ ├── FileNameProperties.html │ │ │ │ │ ├── FileText.html │ │ │ │ │ ├── OriginalMetadata.html │ │ │ │ │ ├── SavePaths.html │ │ │ │ │ ├── UserFileNameProperties.html │ │ │ │ │ └── index.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ │ └── index.html │ └── views │ │ ├── GenericPage.html │ │ ├── GraphiqlPage$.html │ │ ├── HomePage$.html │ │ ├── Includes$.html │ │ ├── QueriesPage$.html │ │ └── index.html ├── css │ ├── fonts │ │ ├── icons.eot │ │ ├── icons.svg │ │ ├── icons.ttf │ │ └── icons.woff │ └── page.css ├── developer │ ├── contributing.html │ ├── doc_updates.html │ ├── ide_setup.html │ ├── index.html │ └── project_structure.html ├── index.html ├── js │ ├── groups.js │ ├── magellan.js │ ├── page.js │ └── warnOldVersion.js ├── latest │ └── api │ │ ├── akka │ │ ├── index.html │ │ └── pattern │ │ │ └── index.html │ │ ├── controllers │ │ ├── DefaultController.html │ │ ├── FileController.html │ │ ├── GraphQlController.html │ │ ├── HealthController.html │ │ ├── ReverseAssets.html │ │ ├── ReverseDefaultController.html │ │ ├── ReverseFileController.html │ │ ├── ReverseGraphQlController.html │ │ ├── ReverseHealthController.html │ │ ├── external │ │ │ ├── athanor │ │ │ │ ├── AthanorClient$AthanorMsg.html │ │ │ │ ├── AthanorClient.html │ │ │ │ └── index.html │ │ │ └── index.html │ │ ├── handlers │ │ │ ├── BatchAnalysisHandler.html │ │ │ ├── CorpusAnalysisHandler$.html │ │ │ ├── ExternalAnalysisHandler.html │ │ │ ├── GenericHandler.html │ │ │ ├── TextAnalysisHandler.html │ │ │ └── index.html │ │ ├── index.html │ │ ├── javascript │ │ │ ├── ReverseAssets.html │ │ │ ├── ReverseDefaultController.html │ │ │ ├── ReverseFileController.html │ │ │ ├── ReverseGraphQlController.html │ │ │ ├── ReverseHealthController.html │ │ │ └── index.html │ │ └── routes.html │ │ ├── index.html │ │ ├── index.js │ │ ├── lib │ │ ├── MaterialIcons-Regular.eot │ │ ├── MaterialIcons-Regular.ttf │ │ ├── MaterialIcons-Regular.woff │ │ ├── abstract_type.svg │ │ ├── class.svg │ │ ├── class_comp.svg │ │ ├── class_diagram.png │ │ ├── diagrams.css │ │ ├── diagrams.js │ │ ├── index.css │ │ ├── index.js │ │ ├── jquery.js │ │ ├── jquery.mousewheel.min.js │ │ ├── jquery.panzoom.min.js │ │ ├── lato-v11-latin-100.eot │ │ ├── lato-v11-latin-100.ttf │ │ ├── lato-v11-latin-100.woff │ │ ├── lato-v11-latin-regular.eot │ │ ├── lato-v11-latin-regular.ttf │ │ ├── lato-v11-latin-regular.woff │ │ ├── modernizr.custom.js │ │ ├── object.svg │ │ ├── object_comp.svg │ │ ├── object_comp_trait.svg │ │ ├── object_diagram.png │ │ ├── open-sans-v13-latin-400i.eot │ │ ├── open-sans-v13-latin-400i.ttf │ │ ├── open-sans-v13-latin-400i.woff │ │ ├── open-sans-v13-latin-700.eot │ │ ├── open-sans-v13-latin-700.ttf │ │ ├── open-sans-v13-latin-700.woff │ │ ├── open-sans-v13-latin-700i.eot │ │ ├── open-sans-v13-latin-700i.ttf │ │ ├── open-sans-v13-latin-700i.woff │ │ ├── open-sans-v13-latin-regular.eot │ │ ├── open-sans-v13-latin-regular.ttf │ │ ├── open-sans-v13-latin-regular.woff │ │ ├── ownderbg2.gif │ │ ├── ownerbg.gif │ │ ├── ownerbg2.gif │ │ ├── package.svg │ │ ├── ref-index.css │ │ ├── scheduler.js │ │ ├── source-code-pro-v6-latin-700.eot │ │ ├── source-code-pro-v6-latin-700.ttf │ │ ├── source-code-pro-v6-latin-700.woff │ │ ├── source-code-pro-v6-latin-regular.eot │ │ ├── source-code-pro-v6-latin-regular.ttf │ │ ├── source-code-pro-v6-latin-regular.woff │ │ ├── template.css │ │ ├── template.js │ │ ├── tools.tooltip.js │ │ ├── trait.svg │ │ ├── trait_comp.svg │ │ ├── trait_diagram.png │ │ └── type_diagram.png │ │ ├── models │ │ ├── GraphqlSchema.html │ │ ├── HealthStatus.html │ │ ├── graphql │ │ │ ├── FieldDocs$$FieldDoc.html │ │ │ ├── FieldDocs$.html │ │ │ ├── Fields$$AffectExpressionsField$.html │ │ │ ├── Fields$$AnnotationsField$.html │ │ │ ├── Fields$$BatchField$.html │ │ │ ├── Fields$$CleanField$.html │ │ │ ├── Fields$$ExpressionsField$.html │ │ │ ├── Fields$$FieldTypes$.html │ │ │ ├── Fields$$MetricsField$.html │ │ │ ├── Fields$$PosStatsField$.html │ │ │ ├── Fields$$ReflectExpressionsField$.html │ │ │ ├── Fields$$RhetoricalMovesField$.html │ │ │ ├── Fields$$SpellingField$.html │ │ │ ├── Fields$$SyllablesField$.html │ │ │ ├── Fields$$VocabularyField$.html │ │ │ ├── Fields$.html │ │ │ ├── GraphqlActions.html │ │ │ └── index.html │ │ └── index.html │ │ ├── modules │ │ ├── AsyncAnalysisActorInitialiser.html │ │ └── index.html │ │ ├── router │ │ ├── Routes.html │ │ ├── RoutesPrefix$.html │ │ └── index.html │ │ └── views │ │ ├── GenericPage.html │ │ ├── GraphiqlPage$.html │ │ ├── HomePage$.html │ │ ├── Includes$.html │ │ ├── QueriesPage$.html │ │ └── index.html ├── lib │ ├── foundation │ │ └── dist │ │ │ ├── foundation.min.css │ │ │ └── foundation.min.js │ ├── jquery │ │ └── jquery.min.js │ ├── normalize.css │ │ └── normalize.css │ └── prettify │ │ ├── lang-scala.js │ │ ├── prettify.css │ │ └── prettify.js ├── overview │ ├── bugs.html │ ├── contributing.html │ ├── index.html │ ├── licensing.html │ └── quick_start.html ├── paradox.json └── user │ ├── graphql.html │ ├── index.html │ ├── user_with_code.html │ ├── user_without_code.html │ └── using_tap.html ├── project ├── LocalSbtSettings.scala ├── build.properties ├── plugins.sbt └── scalastyle_config.xml ├── project_docs └── src │ └── main │ └── paradox │ ├── developer │ ├── contributing.md │ ├── doc_updates.md │ ├── ide_setup.md │ ├── index.md │ └── project_structure.md │ ├── index.md │ ├── overview │ ├── bugs.md │ ├── contributing.md │ ├── index.md │ ├── licensing.md │ └── quick_start.md │ └── user │ ├── graphql.md │ ├── index.md │ ├── user_with_code.md │ ├── user_without_code.md │ └── using_tap.md ├── public ├── images │ └── favicon.ico ├── queries │ └── text.json └── stylesheets │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── graphiql.css ├── tap_client └── src │ └── main │ ├── resources │ └── GraphiqlSetup.js │ └── scala │ └── io │ └── heta │ └── tap │ └── client │ ├── ClientApp.scala │ ├── GraphiQLClient.scala │ ├── GraphiQLQueries.scala │ └── GraphiqlSetup.scala ├── tap_server └── src │ ├── main │ ├── resources │ │ ├── affect-lexicon.json │ │ └── logback.xml │ └── scala │ │ ├── io │ │ └── heta │ │ │ └── tap │ │ │ ├── analysis │ │ │ ├── Lexicons.scala │ │ │ ├── Syllable.scala │ │ │ ├── affectlexicon │ │ │ │ └── AffectLexicon.scala │ │ │ ├── batch │ │ │ │ ├── AwsS3Client.scala │ │ │ │ └── BatchActor.scala │ │ │ ├── clu │ │ │ │ └── CluAnnotatorActor.scala │ │ │ ├── expression │ │ │ │ └── ExpressionAnalyser.scala │ │ │ ├── languagetool │ │ │ │ ├── LanguageToolActor.scala │ │ │ │ ├── Languages.scala │ │ │ │ └── Speller.scala │ │ │ ├── oldtap_toBeRefactored │ │ │ │ ├── ComplexityAggregator.scala │ │ │ │ ├── DocumentFeedback.scala │ │ │ │ ├── ExpressionFeedback.scala │ │ │ │ ├── FeedbackText.scala │ │ │ │ ├── ParagraphFeedback.scala │ │ │ │ ├── SentenceFeedback.scala │ │ │ │ ├── TextshapeAnalyser.scala │ │ │ │ ├── WritingFeedback.scala │ │ │ │ └── XipAnalyser.scala │ │ │ ├── reflectiveExpressions │ │ │ │ ├── PhraseTag.scala │ │ │ │ └── PosTagAnalyser.scala │ │ │ ├── textshapes │ │ │ │ ├── AbstractShape.scala │ │ │ │ ├── TextShapeWS.sc │ │ │ │ └── TfIdfShape.scala │ │ │ └── wordvector │ │ │ │ ├── WordVector.scala │ │ │ │ └── WordVectorActor.scala │ │ │ ├── data │ │ │ ├── CorpusTfIdfResults.scala │ │ │ ├── CustomTypes.scala │ │ │ ├── TextShape.scala │ │ │ ├── doc │ │ │ │ ├── Analytics.scala │ │ │ │ ├── Metrics.scala │ │ │ │ ├── PosStats.scala │ │ │ │ ├── Sentence.scala │ │ │ │ ├── Syllables.scala │ │ │ │ ├── Token.scala │ │ │ │ ├── expression │ │ │ │ │ ├── EpistemicExpression.scala │ │ │ │ │ ├── Expression.scala │ │ │ │ │ ├── Expressions.scala │ │ │ │ │ ├── ModalExpression.scala │ │ │ │ │ ├── affect │ │ │ │ │ │ ├── AffectExpression.scala │ │ │ │ │ │ ├── AffectExpressions.scala │ │ │ │ │ │ └── AffectThresholds.scala │ │ │ │ │ └── reflect │ │ │ │ │ │ ├── CodedSentence.scala │ │ │ │ │ │ ├── MetaTagSummary.scala │ │ │ │ │ │ ├── PhraseTagSummary.scala │ │ │ │ │ │ ├── ReflectExpressions.scala │ │ │ │ │ │ ├── SentencePhrase.scala │ │ │ │ │ │ ├── SentencePhrasesTags.scala │ │ │ │ │ │ ├── Summary.scala │ │ │ │ │ │ └── WordSentenceCounts.scala │ │ │ │ ├── spell │ │ │ │ │ ├── Spell.scala │ │ │ │ │ └── Spelling.scala │ │ │ │ └── vocabulary │ │ │ │ │ ├── TermCount.scala │ │ │ │ │ └── Vocabulary.scala │ │ │ └── results │ │ │ │ ├── AffectExpressionsResult.scala │ │ │ │ ├── Batch.scala │ │ │ │ ├── BatchResult.scala │ │ │ │ ├── ExpressionsResult.scala │ │ │ │ ├── MetricsResult.scala │ │ │ │ ├── PosStatsResult.scala │ │ │ │ ├── ReflectExpressionsResult.scala │ │ │ │ ├── Result.scala │ │ │ │ ├── SentencesResult.scala │ │ │ │ ├── SpellingResult.scala │ │ │ │ ├── StringListResult.scala │ │ │ │ ├── StringResult.scala │ │ │ │ ├── SyllablesResult.scala │ │ │ │ └── VocabularyResult.scala │ │ │ ├── gradebook │ │ │ ├── GradebookParser.scala │ │ │ └── data │ │ │ │ ├── ArchiveFilePaths.scala │ │ │ │ ├── ArchiveMetadata.scala │ │ │ │ ├── FileMetadata.scala │ │ │ │ ├── FileNameProperties.scala │ │ │ │ ├── FileText.scala │ │ │ │ └── SavePaths.scala │ │ │ ├── io │ │ │ └── Local.scala │ │ │ ├── message │ │ │ └── Exception.scala │ │ │ ├── pipelines │ │ │ ├── Annotating.scala │ │ │ ├── AnnotatingTypes.scala │ │ │ ├── Cleaning.scala │ │ │ ├── Pipe.scala │ │ │ ├── Segment.scala │ │ │ ├── Tfidf.scala │ │ │ └── materialize │ │ │ │ ├── ByteStringPipeline.scala │ │ │ │ ├── CorpusPipeline.scala │ │ │ │ ├── CorpusPipelineIter.scala │ │ │ │ ├── FilePipeline.scala │ │ │ │ ├── Pipeline.scala │ │ │ │ ├── PipelineContext.scala │ │ │ │ └── TextPipeline.scala │ │ │ └── util │ │ │ ├── AppConfig.scala │ │ │ └── StringUtil.scala │ │ ├── root-doc.md │ │ └── scratch.sc │ └── test │ └── scala │ └── io │ └── heta │ └── tap │ ├── UnitSpec.scala │ ├── WordVectorSpec.scala │ ├── handlers │ ├── ExternalAnalysisHandlerSpec.scala │ └── TextAnalysisHandlerSpec.scala │ ├── nlp │ └── old │ │ └── openNlp │ │ └── ParsersSpec.scala │ └── pipelines │ ├── AnnotatingPipelineSpec.scala │ └── CleaningPipelineSpec.scala └── test ├── DefaultControllerSpec.scala ├── FileControllerSpec.scala └── FunctionalSpec.scala /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/DefaultController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/DefaultController.scala -------------------------------------------------------------------------------- /app/controllers/FileController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/FileController.scala -------------------------------------------------------------------------------- /app/controllers/GraphQlController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/GraphQlController.scala -------------------------------------------------------------------------------- /app/controllers/HealthController.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/HealthController.scala -------------------------------------------------------------------------------- /app/controllers/external/athanor/AthanorClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/external/athanor/AthanorClient.scala -------------------------------------------------------------------------------- /app/controllers/handlers/BatchAnalysisHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/handlers/BatchAnalysisHandler.scala -------------------------------------------------------------------------------- /app/controllers/handlers/CorpusAnalysisHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/handlers/CorpusAnalysisHandler.scala -------------------------------------------------------------------------------- /app/controllers/handlers/ExternalAnalysisHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/handlers/ExternalAnalysisHandler.scala -------------------------------------------------------------------------------- /app/controllers/handlers/GenericHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/handlers/GenericHandler.scala -------------------------------------------------------------------------------- /app/controllers/handlers/TextAnalysisHandler.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/controllers/handlers/TextAnalysisHandler.scala -------------------------------------------------------------------------------- /app/models/GraphqlSchema.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/models/GraphqlSchema.scala -------------------------------------------------------------------------------- /app/models/HealthStatus.scala: -------------------------------------------------------------------------------- 1 | package models 2 | 3 | case class HealthStatus(code: Int) 4 | -------------------------------------------------------------------------------- /app/models/graphql/FieldDocs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/models/graphql/FieldDocs.scala -------------------------------------------------------------------------------- /app/models/graphql/Fields.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/models/graphql/Fields.scala -------------------------------------------------------------------------------- /app/models/graphql/GraphqlActions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/models/graphql/GraphqlActions.scala -------------------------------------------------------------------------------- /app/modules/AsyncAnalysisActorInitialiser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/modules/AsyncAnalysisActorInitialiser.scala -------------------------------------------------------------------------------- /app/views/GenericPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/views/GenericPage.scala -------------------------------------------------------------------------------- /app/views/GraphiqlPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/views/GraphiqlPage.scala -------------------------------------------------------------------------------- /app/views/HomePage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/views/HomePage.scala -------------------------------------------------------------------------------- /app/views/Includes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/views/Includes.scala -------------------------------------------------------------------------------- /app/views/QueriesPage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/app/views/QueriesPage.scala -------------------------------------------------------------------------------- /conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/conf/application.conf -------------------------------------------------------------------------------- /conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/conf/routes -------------------------------------------------------------------------------- /docs/api/akka/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/akka/index.html -------------------------------------------------------------------------------- /docs/api/akka/pattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/akka/pattern/index.html -------------------------------------------------------------------------------- /docs/api/controllers/DefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/DefaultController.html -------------------------------------------------------------------------------- /docs/api/controllers/FileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/FileController.html -------------------------------------------------------------------------------- /docs/api/controllers/GraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/GraphQlController.html -------------------------------------------------------------------------------- /docs/api/controllers/HealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/HealthController.html -------------------------------------------------------------------------------- /docs/api/controllers/ReverseAssets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/ReverseAssets.html -------------------------------------------------------------------------------- /docs/api/controllers/ReverseDefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/ReverseDefaultController.html -------------------------------------------------------------------------------- /docs/api/controllers/ReverseFileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/ReverseFileController.html -------------------------------------------------------------------------------- /docs/api/controllers/ReverseGraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/ReverseGraphQlController.html -------------------------------------------------------------------------------- /docs/api/controllers/ReverseHealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/ReverseHealthController.html -------------------------------------------------------------------------------- /docs/api/controllers/external/athanor/AthanorClient$AthanorMsg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/external/athanor/AthanorClient$AthanorMsg.html -------------------------------------------------------------------------------- /docs/api/controllers/external/athanor/AthanorClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/external/athanor/AthanorClient.html -------------------------------------------------------------------------------- /docs/api/controllers/external/athanor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/external/athanor/index.html -------------------------------------------------------------------------------- /docs/api/controllers/external/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/external/index.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/BatchAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/BatchAnalysisHandler.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/CorpusAnalysisHandler$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/CorpusAnalysisHandler$.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/ExternalAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/ExternalAnalysisHandler.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/GenericHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/GenericHandler.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/TextAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/TextAnalysisHandler.html -------------------------------------------------------------------------------- /docs/api/controllers/handlers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/handlers/index.html -------------------------------------------------------------------------------- /docs/api/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/index.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/ReverseAssets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/ReverseAssets.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/ReverseDefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/ReverseDefaultController.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/ReverseFileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/ReverseFileController.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/ReverseGraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/ReverseGraphQlController.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/ReverseHealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/ReverseHealthController.html -------------------------------------------------------------------------------- /docs/api/controllers/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/javascript/index.html -------------------------------------------------------------------------------- /docs/api/controllers/routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/controllers/routes.html -------------------------------------------------------------------------------- /docs/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/index.html -------------------------------------------------------------------------------- /docs/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/index.js -------------------------------------------------------------------------------- /docs/api/io/heta/BuildInfo$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/BuildInfo$.html -------------------------------------------------------------------------------- /docs/api/io/heta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/Lexicons$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/Lexicons$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/Syllable$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/Syllable$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/affectlexicon/AffectLexicon$$Affect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/affectlexicon/AffectLexicon$$Affect.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/affectlexicon/AffectLexicon$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/affectlexicon/AffectLexicon$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/affectlexicon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/affectlexicon/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/AwsS3Client.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/AwsS3Client.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$$AnalyseSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$$AnalyseSource.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$$AnalysisRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$$AnalysisRequest.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$$CheckProgress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$$CheckProgress.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$$INIT$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$$INIT$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$$ResultMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$$ResultMessage.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/BatchActor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/BatchActor.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/batch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/batch/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$AnnotateRequest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$AnnotateRequest.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$INIT$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$INIT$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$Request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$$Request.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/CluAnnotatorActor.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/clu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/clu/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/expression/ExpressionAnalyser$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/expression/ExpressionAnalyser$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/expression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/expression/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/languagetool/Languages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/languagetool/Languages.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/languagetool/Speller$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/languagetool/Speller$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/languagetool/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/languagetool/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/reflectiveExpressions/PhraseTag$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/reflectiveExpressions/PhraseTag$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/reflectiveExpressions/PosTagAnalyser$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/reflectiveExpressions/PosTagAnalyser$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/reflectiveExpressions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/reflectiveExpressions/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/textshapes/AbstractShape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/textshapes/AbstractShape.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/textshapes/TfIdfShape$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/textshapes/TfIdfShape$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/textshapes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/textshapes/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$$INIT$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$$INIT$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$$getNearestWords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$$getNearestWords.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/wordvector/WordVectorActor$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/wordvector/WordVectorActor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/wordvector/WordVectorActor.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/analysis/wordvector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/analysis/wordvector/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/client/ClientApp$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/client/ClientApp$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/client/GraphiQLClient$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/client/GraphiQLClient$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/client/GraphiQLQueries$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/client/GraphiQLQueries$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/client/GraphiqlSetup$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/client/GraphiqlSetup$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/client/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/CustomTypes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/CustomTypes$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Analytics.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Metrics$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Metrics$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Metrics.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/PosStats$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/PosStats$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/PosStats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/PosStats.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Sentence$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Sentence$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Sentence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Sentence.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Syllables$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Syllables$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Syllables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Syllables.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Token$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Token$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/Token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/Token.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/EpistemicExpression$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/EpistemicExpression$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/EpistemicExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/EpistemicExpression.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/Expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/Expression.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/Expressions$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/Expressions$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/Expressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/Expressions.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/ModalExpression$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/ModalExpression$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/ModalExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/ModalExpression.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectExpression$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectExpression$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectExpression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectExpression.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectExpressions$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectExpressions$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectExpressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectExpressions.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectThresholds$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectThresholds$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/AffectThresholds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/AffectThresholds.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/affect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/affect/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/CodedSentence$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/CodedSentence$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/CodedSentence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/CodedSentence.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/MetaTagSummary$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/MetaTagSummary$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/MetaTagSummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/MetaTagSummary.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/ReflectExpressions$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/ReflectExpressions$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/ReflectExpressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/ReflectExpressions.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrase$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrase$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrase.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/Summary$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/Summary$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/Summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/Summary.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/expression/reflect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/expression/reflect/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/spell/Spell$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/spell/Spell$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/spell/Spell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/spell/Spell.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/spell/Spelling$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/spell/Spelling$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/spell/Spelling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/spell/Spelling.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/spell/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/spell/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/vocabulary/TermCount$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/vocabulary/TermCount$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/vocabulary/TermCount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/vocabulary/TermCount.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/vocabulary/Vocabulary$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/vocabulary/Vocabulary$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/vocabulary/Vocabulary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/vocabulary/Vocabulary.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/doc/vocabulary/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/doc/vocabulary/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/AffectExpressionsResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/AffectExpressionsResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/AffectExpressionsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/AffectExpressionsResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/Batch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/Batch.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/BatchResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/BatchResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/BatchResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/BatchResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/ExpressionsResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/ExpressionsResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/ExpressionsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/ExpressionsResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/MetricsResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/MetricsResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/MetricsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/MetricsResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/PosStatsResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/PosStatsResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/PosStatsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/PosStatsResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/ReflectExpressionsResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/ReflectExpressionsResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/ReflectExpressionsResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/ReflectExpressionsResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/Result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/Result.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SentencesResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SentencesResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SentencesResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SentencesResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SpellingResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SpellingResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SpellingResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SpellingResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/StringListResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/StringListResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/StringResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/StringResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SyllablesResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SyllablesResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/SyllablesResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/SyllablesResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/VocabularyResult$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/VocabularyResult$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/VocabularyResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/VocabularyResult.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/data/results/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/data/results/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/gradebook/GradebookParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/gradebook/GradebookParser.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/gradebook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/gradebook/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/io/Local$$CorpusFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/io/Local$$CorpusFile.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/io/Local$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/io/Local$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/io/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/message/Exception$$UnknownAnalysisType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/message/Exception$$UnknownAnalysisType.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/message/Exception$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/message/Exception$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/message/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/message/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Annotating$Pipeline$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Annotating$Pipeline$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Annotating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Annotating.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/AnnotatingTypes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/AnnotatingTypes$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$CharFilter$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$CharFilter$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$Hyphen$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$Hyphen$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$Pipeline$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$Pipeline$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$Quote$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$Quote$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$Replace$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$Replace$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning$White$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning$White$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Cleaning.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Cleaning.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Pipe$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Pipe$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Segment$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Segment$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/Tfidf$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/Tfidf$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/ByteStringPipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/ByteStringPipeline.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/CorpusPipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/CorpusPipeline.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/CorpusPipelineIter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/CorpusPipelineIter.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/FilePipeline$$File.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/FilePipeline$$File.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/FilePipeline$$FileInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/FilePipeline$$FileInfo.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/FilePipeline$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/FilePipeline$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/FilePipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/FilePipeline.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/Pipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/Pipeline.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/PipelineContext$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/PipelineContext$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/TextPipeline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/TextPipeline.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/pipelines/materialize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/pipelines/materialize/index.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/util/AppConfig$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/util/AppConfig$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/util/AppConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/util/AppConfig.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/util/StringUtil$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/util/StringUtil$.html -------------------------------------------------------------------------------- /docs/api/io/heta/tap/util/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/heta/tap/util/index.html -------------------------------------------------------------------------------- /docs/api/io/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/io/index.html -------------------------------------------------------------------------------- /docs/api/lib/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /docs/api/lib/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /docs/api/lib/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /docs/api/lib/abstract_type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/abstract_type.svg -------------------------------------------------------------------------------- /docs/api/lib/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/class.svg -------------------------------------------------------------------------------- /docs/api/lib/class_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/class_comp.svg -------------------------------------------------------------------------------- /docs/api/lib/class_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/class_diagram.png -------------------------------------------------------------------------------- /docs/api/lib/diagrams.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/diagrams.css -------------------------------------------------------------------------------- /docs/api/lib/diagrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/diagrams.js -------------------------------------------------------------------------------- /docs/api/lib/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/index.css -------------------------------------------------------------------------------- /docs/api/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/index.js -------------------------------------------------------------------------------- /docs/api/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/jquery.js -------------------------------------------------------------------------------- /docs/api/lib/jquery.mousewheel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/jquery.mousewheel.min.js -------------------------------------------------------------------------------- /docs/api/lib/jquery.panzoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/jquery.panzoom.min.js -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-100.eot -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-100.ttf -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-100.woff -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-regular.eot -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-regular.ttf -------------------------------------------------------------------------------- /docs/api/lib/lato-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/lato-v11-latin-regular.woff -------------------------------------------------------------------------------- /docs/api/lib/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/modernizr.custom.js -------------------------------------------------------------------------------- /docs/api/lib/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/object.svg -------------------------------------------------------------------------------- /docs/api/lib/object_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/object_comp.svg -------------------------------------------------------------------------------- /docs/api/lib/object_comp_trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/object_comp_trait.svg -------------------------------------------------------------------------------- /docs/api/lib/object_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/object_diagram.png -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-400i.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-400i.eot -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-400i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-400i.ttf -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-400i.woff -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700.eot -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700.ttf -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700.woff -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700i.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700i.eot -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700i.ttf -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-700i.woff -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-regular.eot -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-regular.ttf -------------------------------------------------------------------------------- /docs/api/lib/open-sans-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/open-sans-v13-latin-regular.woff -------------------------------------------------------------------------------- /docs/api/lib/ownderbg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/ownderbg2.gif -------------------------------------------------------------------------------- /docs/api/lib/ownerbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/ownerbg.gif -------------------------------------------------------------------------------- /docs/api/lib/ownerbg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/ownerbg2.gif -------------------------------------------------------------------------------- /docs/api/lib/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/package.svg -------------------------------------------------------------------------------- /docs/api/lib/ref-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/ref-index.css -------------------------------------------------------------------------------- /docs/api/lib/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/scheduler.js -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-700.eot -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-700.ttf -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-700.woff -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-regular.eot -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-regular.ttf -------------------------------------------------------------------------------- /docs/api/lib/source-code-pro-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/source-code-pro-v6-latin-regular.woff -------------------------------------------------------------------------------- /docs/api/lib/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/template.css -------------------------------------------------------------------------------- /docs/api/lib/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/template.js -------------------------------------------------------------------------------- /docs/api/lib/tools.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/tools.tooltip.js -------------------------------------------------------------------------------- /docs/api/lib/trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/trait.svg -------------------------------------------------------------------------------- /docs/api/lib/trait_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/trait_comp.svg -------------------------------------------------------------------------------- /docs/api/lib/trait_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/trait_diagram.png -------------------------------------------------------------------------------- /docs/api/lib/type_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/lib/type_diagram.png -------------------------------------------------------------------------------- /docs/api/models/GraphqlSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/GraphqlSchema.html -------------------------------------------------------------------------------- /docs/api/models/HealthStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/HealthStatus.html -------------------------------------------------------------------------------- /docs/api/models/graphql/FieldDocs$$FieldDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/FieldDocs$$FieldDoc.html -------------------------------------------------------------------------------- /docs/api/models/graphql/FieldDocs$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/FieldDocs$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$AffectExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$AffectExpressionsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$AnnotationsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$AnnotationsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$BatchField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$BatchField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$CleanField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$CleanField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$ExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$ExpressionsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$FieldTypes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$FieldTypes$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$MetricsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$MetricsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$PosStatsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$PosStatsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$ReflectExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$ReflectExpressionsField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$RhetoricalMovesField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$RhetoricalMovesField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$SpellingField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$SpellingField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$SyllablesField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$SyllablesField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$$VocabularyField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$$VocabularyField$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/Fields$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/Fields$.html -------------------------------------------------------------------------------- /docs/api/models/graphql/GraphqlActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/GraphqlActions.html -------------------------------------------------------------------------------- /docs/api/models/graphql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/graphql/index.html -------------------------------------------------------------------------------- /docs/api/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/models/index.html -------------------------------------------------------------------------------- /docs/api/modules/AsyncAnalysisActorInitialiser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/modules/AsyncAnalysisActorInitialiser.html -------------------------------------------------------------------------------- /docs/api/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/modules/index.html -------------------------------------------------------------------------------- /docs/api/router/Routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/router/Routes.html -------------------------------------------------------------------------------- /docs/api/router/RoutesPrefix$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/router/RoutesPrefix$.html -------------------------------------------------------------------------------- /docs/api/router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/router/index.html -------------------------------------------------------------------------------- /docs/api/tap/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/index.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/ArchiveFileNameProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/ArchiveFileNameProperties.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/ArchiveFilePaths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/ArchiveFilePaths.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/ArchiveMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/ArchiveMetadata.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/FileMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/FileMetadata.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/FileNameProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/FileNameProperties.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/FileText.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/FileText.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/OriginalMetadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/OriginalMetadata.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/SavePaths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/SavePaths.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/UserFileNameProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/UserFileNameProperties.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/data/index.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/gradebook/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/gradebook/index.html -------------------------------------------------------------------------------- /docs/api/tap/services/corpora/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/corpora/index.html -------------------------------------------------------------------------------- /docs/api/tap/services/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/tap/services/index.html -------------------------------------------------------------------------------- /docs/api/views/GenericPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/GenericPage.html -------------------------------------------------------------------------------- /docs/api/views/GraphiqlPage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/GraphiqlPage$.html -------------------------------------------------------------------------------- /docs/api/views/HomePage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/HomePage$.html -------------------------------------------------------------------------------- /docs/api/views/Includes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/Includes$.html -------------------------------------------------------------------------------- /docs/api/views/QueriesPage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/QueriesPage$.html -------------------------------------------------------------------------------- /docs/api/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/api/views/index.html -------------------------------------------------------------------------------- /docs/css/fonts/icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/css/fonts/icons.eot -------------------------------------------------------------------------------- /docs/css/fonts/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/css/fonts/icons.svg -------------------------------------------------------------------------------- /docs/css/fonts/icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/css/fonts/icons.ttf -------------------------------------------------------------------------------- /docs/css/fonts/icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/css/fonts/icons.woff -------------------------------------------------------------------------------- /docs/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/css/page.css -------------------------------------------------------------------------------- /docs/developer/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/developer/contributing.html -------------------------------------------------------------------------------- /docs/developer/doc_updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/developer/doc_updates.html -------------------------------------------------------------------------------- /docs/developer/ide_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/developer/ide_setup.html -------------------------------------------------------------------------------- /docs/developer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/developer/index.html -------------------------------------------------------------------------------- /docs/developer/project_structure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/developer/project_structure.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/js/groups.js -------------------------------------------------------------------------------- /docs/js/magellan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/js/magellan.js -------------------------------------------------------------------------------- /docs/js/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/js/page.js -------------------------------------------------------------------------------- /docs/js/warnOldVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/js/warnOldVersion.js -------------------------------------------------------------------------------- /docs/latest/api/akka/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/akka/index.html -------------------------------------------------------------------------------- /docs/latest/api/akka/pattern/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/akka/pattern/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/DefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/DefaultController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/FileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/FileController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/GraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/GraphQlController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/HealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/HealthController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/ReverseAssets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/ReverseAssets.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/ReverseDefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/ReverseDefaultController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/ReverseFileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/ReverseFileController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/ReverseGraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/ReverseGraphQlController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/ReverseHealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/ReverseHealthController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/external/athanor/AthanorClient$AthanorMsg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/external/athanor/AthanorClient$AthanorMsg.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/external/athanor/AthanorClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/external/athanor/AthanorClient.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/external/athanor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/external/athanor/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/external/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/external/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/BatchAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/BatchAnalysisHandler.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/CorpusAnalysisHandler$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/CorpusAnalysisHandler$.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/ExternalAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/ExternalAnalysisHandler.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/GenericHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/GenericHandler.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/TextAnalysisHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/TextAnalysisHandler.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/handlers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/handlers/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/ReverseAssets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/ReverseAssets.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/ReverseDefaultController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/ReverseDefaultController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/ReverseFileController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/ReverseFileController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/ReverseGraphQlController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/ReverseGraphQlController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/ReverseHealthController.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/ReverseHealthController.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/javascript/index.html -------------------------------------------------------------------------------- /docs/latest/api/controllers/routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/controllers/routes.html -------------------------------------------------------------------------------- /docs/latest/api/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/index.html -------------------------------------------------------------------------------- /docs/latest/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/index.js -------------------------------------------------------------------------------- /docs/latest/api/lib/MaterialIcons-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/MaterialIcons-Regular.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/abstract_type.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/abstract_type.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/class.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/class.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/class_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/class_comp.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/class_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/class_diagram.png -------------------------------------------------------------------------------- /docs/latest/api/lib/diagrams.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/diagrams.css -------------------------------------------------------------------------------- /docs/latest/api/lib/diagrams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/diagrams.js -------------------------------------------------------------------------------- /docs/latest/api/lib/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/index.css -------------------------------------------------------------------------------- /docs/latest/api/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/index.js -------------------------------------------------------------------------------- /docs/latest/api/lib/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/jquery.js -------------------------------------------------------------------------------- /docs/latest/api/lib/jquery.mousewheel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/jquery.mousewheel.min.js -------------------------------------------------------------------------------- /docs/latest/api/lib/jquery.panzoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/jquery.panzoom.min.js -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-100.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-100.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-100.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-100.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-100.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-100.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-regular.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-regular.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/lato-v11-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/lato-v11-latin-regular.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/modernizr.custom.js -------------------------------------------------------------------------------- /docs/latest/api/lib/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/object.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/object_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/object_comp.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/object_comp_trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/object_comp_trait.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/object_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/object_diagram.png -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-400i.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-400i.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-400i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-400i.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-400i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-400i.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700i.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700i.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700i.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700i.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-700i.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-700i.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-regular.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-regular.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/open-sans-v13-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/open-sans-v13-latin-regular.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/ownderbg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/ownderbg2.gif -------------------------------------------------------------------------------- /docs/latest/api/lib/ownerbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/ownerbg.gif -------------------------------------------------------------------------------- /docs/latest/api/lib/ownerbg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/ownerbg2.gif -------------------------------------------------------------------------------- /docs/latest/api/lib/package.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/package.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/ref-index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/ref-index.css -------------------------------------------------------------------------------- /docs/latest/api/lib/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/scheduler.js -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-700.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-700.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-700.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-regular.eot -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-regular.ttf -------------------------------------------------------------------------------- /docs/latest/api/lib/source-code-pro-v6-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/source-code-pro-v6-latin-regular.woff -------------------------------------------------------------------------------- /docs/latest/api/lib/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/template.css -------------------------------------------------------------------------------- /docs/latest/api/lib/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/template.js -------------------------------------------------------------------------------- /docs/latest/api/lib/tools.tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/tools.tooltip.js -------------------------------------------------------------------------------- /docs/latest/api/lib/trait.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/trait.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/trait_comp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/trait_comp.svg -------------------------------------------------------------------------------- /docs/latest/api/lib/trait_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/trait_diagram.png -------------------------------------------------------------------------------- /docs/latest/api/lib/type_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/lib/type_diagram.png -------------------------------------------------------------------------------- /docs/latest/api/models/GraphqlSchema.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/GraphqlSchema.html -------------------------------------------------------------------------------- /docs/latest/api/models/HealthStatus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/HealthStatus.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/FieldDocs$$FieldDoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/FieldDocs$$FieldDoc.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/FieldDocs$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/FieldDocs$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$AffectExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$AffectExpressionsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$AnnotationsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$AnnotationsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$BatchField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$BatchField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$CleanField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$CleanField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$ExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$ExpressionsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$FieldTypes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$FieldTypes$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$MetricsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$MetricsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$PosStatsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$PosStatsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$ReflectExpressionsField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$ReflectExpressionsField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$RhetoricalMovesField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$RhetoricalMovesField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$SpellingField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$SpellingField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$SyllablesField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$SyllablesField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$$VocabularyField$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$$VocabularyField$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/Fields$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/Fields$.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/GraphqlActions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/GraphqlActions.html -------------------------------------------------------------------------------- /docs/latest/api/models/graphql/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/graphql/index.html -------------------------------------------------------------------------------- /docs/latest/api/models/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/models/index.html -------------------------------------------------------------------------------- /docs/latest/api/modules/AsyncAnalysisActorInitialiser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/modules/AsyncAnalysisActorInitialiser.html -------------------------------------------------------------------------------- /docs/latest/api/modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/modules/index.html -------------------------------------------------------------------------------- /docs/latest/api/router/Routes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/router/Routes.html -------------------------------------------------------------------------------- /docs/latest/api/router/RoutesPrefix$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/router/RoutesPrefix$.html -------------------------------------------------------------------------------- /docs/latest/api/router/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/router/index.html -------------------------------------------------------------------------------- /docs/latest/api/views/GenericPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/GenericPage.html -------------------------------------------------------------------------------- /docs/latest/api/views/GraphiqlPage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/GraphiqlPage$.html -------------------------------------------------------------------------------- /docs/latest/api/views/HomePage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/HomePage$.html -------------------------------------------------------------------------------- /docs/latest/api/views/Includes$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/Includes$.html -------------------------------------------------------------------------------- /docs/latest/api/views/QueriesPage$.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/QueriesPage$.html -------------------------------------------------------------------------------- /docs/latest/api/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/latest/api/views/index.html -------------------------------------------------------------------------------- /docs/lib/foundation/dist/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/foundation/dist/foundation.min.css -------------------------------------------------------------------------------- /docs/lib/foundation/dist/foundation.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/foundation/dist/foundation.min.js -------------------------------------------------------------------------------- /docs/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /docs/lib/normalize.css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/normalize.css/normalize.css -------------------------------------------------------------------------------- /docs/lib/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/prettify/lang-scala.js -------------------------------------------------------------------------------- /docs/lib/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/prettify/prettify.css -------------------------------------------------------------------------------- /docs/lib/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/lib/prettify/prettify.js -------------------------------------------------------------------------------- /docs/overview/bugs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/overview/bugs.html -------------------------------------------------------------------------------- /docs/overview/contributing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/overview/contributing.html -------------------------------------------------------------------------------- /docs/overview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/overview/index.html -------------------------------------------------------------------------------- /docs/overview/licensing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/overview/licensing.html -------------------------------------------------------------------------------- /docs/overview/quick_start.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/overview/quick_start.html -------------------------------------------------------------------------------- /docs/paradox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/paradox.json -------------------------------------------------------------------------------- /docs/user/graphql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/user/graphql.html -------------------------------------------------------------------------------- /docs/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/user/index.html -------------------------------------------------------------------------------- /docs/user/user_with_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/user/user_with_code.html -------------------------------------------------------------------------------- /docs/user/user_without_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/user/user_without_code.html -------------------------------------------------------------------------------- /docs/user/using_tap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/docs/user/using_tap.html -------------------------------------------------------------------------------- /project/LocalSbtSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project/LocalSbtSettings.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project/build.properties -------------------------------------------------------------------------------- /project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project/plugins.sbt -------------------------------------------------------------------------------- /project/scalastyle_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project/scalastyle_config.xml -------------------------------------------------------------------------------- /project_docs/src/main/paradox/developer/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/developer/contributing.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/developer/doc_updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/developer/doc_updates.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/developer/ide_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/developer/ide_setup.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/developer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/developer/index.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/developer/project_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/developer/project_structure.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/index.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/overview/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/overview/bugs.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/overview/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/overview/contributing.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/overview/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/overview/index.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/overview/licensing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/overview/licensing.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/overview/quick_start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/overview/quick_start.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/user/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/user/graphql.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/user/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/user/index.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/user/user_with_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/user/user_with_code.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/user/user_without_code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/user/user_without_code.md -------------------------------------------------------------------------------- /project_docs/src/main/paradox/user/using_tap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/project_docs/src/main/paradox/user/using_tap.md -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/queries/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/queries/text.json -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-grid.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-grid.css.map -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-grid.min.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /public/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap.css.map -------------------------------------------------------------------------------- /public/stylesheets/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap.min.css -------------------------------------------------------------------------------- /public/stylesheets/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/bootstrap.min.css.map -------------------------------------------------------------------------------- /public/stylesheets/graphiql.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/public/stylesheets/graphiql.css -------------------------------------------------------------------------------- /tap_client/src/main/resources/GraphiqlSetup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_client/src/main/resources/GraphiqlSetup.js -------------------------------------------------------------------------------- /tap_client/src/main/scala/io/heta/tap/client/ClientApp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_client/src/main/scala/io/heta/tap/client/ClientApp.scala -------------------------------------------------------------------------------- /tap_client/src/main/scala/io/heta/tap/client/GraphiQLClient.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_client/src/main/scala/io/heta/tap/client/GraphiQLClient.scala -------------------------------------------------------------------------------- /tap_client/src/main/scala/io/heta/tap/client/GraphiQLQueries.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_client/src/main/scala/io/heta/tap/client/GraphiQLQueries.scala -------------------------------------------------------------------------------- /tap_client/src/main/scala/io/heta/tap/client/GraphiqlSetup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_client/src/main/scala/io/heta/tap/client/GraphiqlSetup.scala -------------------------------------------------------------------------------- /tap_server/src/main/resources/affect-lexicon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/resources/affect-lexicon.json -------------------------------------------------------------------------------- /tap_server/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/resources/logback.xml -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/Lexicons.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/Lexicons.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/Syllable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/Syllable.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/affectlexicon/AffectLexicon.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/affectlexicon/AffectLexicon.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/batch/AwsS3Client.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/batch/AwsS3Client.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/batch/BatchActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/batch/BatchActor.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/clu/CluAnnotatorActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/clu/CluAnnotatorActor.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/expression/ExpressionAnalyser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/expression/ExpressionAnalyser.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/languagetool/LanguageToolActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/languagetool/LanguageToolActor.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/languagetool/Languages.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/languagetool/Languages.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/languagetool/Speller.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/languagetool/Speller.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ComplexityAggregator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ComplexityAggregator.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/DocumentFeedback.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/DocumentFeedback.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ExpressionFeedback.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ExpressionFeedback.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/FeedbackText.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/FeedbackText.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ParagraphFeedback.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/ParagraphFeedback.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/SentenceFeedback.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/SentenceFeedback.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/TextshapeAnalyser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/TextshapeAnalyser.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/WritingFeedback.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/WritingFeedback.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/XipAnalyser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/oldtap_toBeRefactored/XipAnalyser.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/reflectiveExpressions/PhraseTag.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/reflectiveExpressions/PhraseTag.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/reflectiveExpressions/PosTagAnalyser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/reflectiveExpressions/PosTagAnalyser.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/textshapes/AbstractShape.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/textshapes/AbstractShape.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/textshapes/TextShapeWS.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/textshapes/TextShapeWS.sc -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/textshapes/TfIdfShape.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/textshapes/TfIdfShape.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/wordvector/WordVector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/wordvector/WordVector.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/analysis/wordvector/WordVectorActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/analysis/wordvector/WordVectorActor.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/CorpusTfIdfResults.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/CorpusTfIdfResults.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/CustomTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/CustomTypes.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/TextShape.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/TextShape.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/Analytics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/Analytics.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/Metrics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/Metrics.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/PosStats.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/PosStats.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/Sentence.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/Sentence.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/Syllables.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/Syllables.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/Token.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/Token.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/EpistemicExpression.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/EpistemicExpression.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/Expression.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/Expression.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/Expressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/Expressions.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/ModalExpression.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/ModalExpression.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectExpression.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectExpression.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectExpressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectExpressions.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectThresholds.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/affect/AffectThresholds.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/CodedSentence.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/CodedSentence.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/MetaTagSummary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/MetaTagSummary.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/PhraseTagSummary.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/ReflectExpressions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/ReflectExpressions.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/SentencePhrase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/SentencePhrase.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/SentencePhrasesTags.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/Summary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/Summary.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/expression/reflect/WordSentenceCounts.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/spell/Spell.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/spell/Spell.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/spell/Spelling.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/spell/Spelling.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/vocabulary/TermCount.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/vocabulary/TermCount.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/doc/vocabulary/Vocabulary.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/doc/vocabulary/Vocabulary.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/AffectExpressionsResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/AffectExpressionsResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/Batch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/Batch.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/BatchResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/BatchResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/ExpressionsResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/ExpressionsResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/MetricsResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/MetricsResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/PosStatsResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/PosStatsResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/ReflectExpressionsResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/ReflectExpressionsResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/Result.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/Result.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/SentencesResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/SentencesResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/SpellingResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/SpellingResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/StringListResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/StringListResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/StringResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/StringResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/SyllablesResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/SyllablesResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/data/results/VocabularyResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/data/results/VocabularyResult.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/GradebookParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/GradebookParser.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/ArchiveFilePaths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/ArchiveFilePaths.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/ArchiveMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/ArchiveMetadata.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/FileMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/FileMetadata.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/FileNameProperties.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/FileNameProperties.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/FileText.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/FileText.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/gradebook/data/SavePaths.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/gradebook/data/SavePaths.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/io/Local.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/io/Local.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/message/Exception.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/message/Exception.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/Annotating.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/Annotating.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/AnnotatingTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/AnnotatingTypes.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/Cleaning.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/Cleaning.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/Pipe.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/Pipe.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/Segment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/Segment.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/Tfidf.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/Tfidf.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/ByteStringPipeline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/ByteStringPipeline.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/CorpusPipeline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/CorpusPipeline.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/CorpusPipelineIter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/CorpusPipelineIter.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/FilePipeline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/FilePipeline.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/Pipeline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/Pipeline.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/PipelineContext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/PipelineContext.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/pipelines/materialize/TextPipeline.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/pipelines/materialize/TextPipeline.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/util/AppConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/util/AppConfig.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/io/heta/tap/util/StringUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/io/heta/tap/util/StringUtil.scala -------------------------------------------------------------------------------- /tap_server/src/main/scala/root-doc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/root-doc.md -------------------------------------------------------------------------------- /tap_server/src/main/scala/scratch.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/main/scala/scratch.sc -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/UnitSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/UnitSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/WordVectorSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/WordVectorSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/handlers/ExternalAnalysisHandlerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/handlers/ExternalAnalysisHandlerSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/handlers/TextAnalysisHandlerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/handlers/TextAnalysisHandlerSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/nlp/old/openNlp/ParsersSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/nlp/old/openNlp/ParsersSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/pipelines/AnnotatingPipelineSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/pipelines/AnnotatingPipelineSpec.scala -------------------------------------------------------------------------------- /tap_server/src/test/scala/io/heta/tap/pipelines/CleaningPipelineSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/tap_server/src/test/scala/io/heta/tap/pipelines/CleaningPipelineSpec.scala -------------------------------------------------------------------------------- /test/DefaultControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/test/DefaultControllerSpec.scala -------------------------------------------------------------------------------- /test/FileControllerSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/test/FileControllerSpec.scala -------------------------------------------------------------------------------- /test/FunctionalSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heta-io/tap/HEAD/test/FunctionalSpec.scala --------------------------------------------------------------------------------