├── .gitignore ├── .todo ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── abbr.txt ├── analyze_guess.xfst ├── analyzer.lexc ├── analyzer.xfst ├── converters ├── Makefile ├── o2t.py └── o2t.xfst ├── doc ├── lrec2010-paper.pdf ├── manual │ ├── .gitignore │ ├── Makefile │ ├── figures │ │ └── nomfsa1.tikz.tex │ ├── morph-tags-old-and-new.txt │ ├── trmorph-manual.bib │ ├── trmorph-manual.sty │ └── trmorph-manual.tex ├── options.txt ├── trmorph-manual.pdf └── unanlyzed ├── exceptions.lexc ├── g2p.xfst ├── guesser.lexc ├── guesser.xfst ├── hyphenate.xfst ├── lexicon ├── abbreviation ├── adjective ├── adverb ├── alpha ├── childes-forms ├── circumflex ├── clitics ├── common_typos ├── conjunction ├── determiner ├── emoticon ├── interjection ├── location_names ├── new-items ├── noun ├── onomatopoeia ├── part-word.sh ├── part_word ├── person_names ├── person_names.foreign ├── postposition ├── pronoun ├── proper_noun ├── punctuation ├── qwords ├── reduplication ├── reduplication.part ├── symbol ├── tinglish ├── todo ├── verb └── verb_la ├── lib ├── Makefile ├── ascii-allcaps.xfst ├── ascii-capitalize.xfst ├── ascii-lower.xfst ├── ascii-upper.xfst ├── ascii.xfst ├── digit.xfst ├── dns-tld-short.xfst ├── dns-tld.xfst ├── email-string.xfst ├── email.xfst ├── internet-domain-name.xfst ├── ip-addr.xfst ├── makedepend.sh └── url.xfst ├── makedepend.sh ├── morph-phon.xfst ├── morph.lexc ├── multi-char.lexc ├── number.lexc ├── options.h-default ├── scripts ├── disambiguate.py ├── example.py ├── foma-exmaple.c ├── segment-filter.py └── tokenize.sed ├── segment.xfst ├── stemmer.xfst ├── test ├── .gitignore ├── 15_punct ├── Makefile ├── README ├── aor.test ├── basic-tam.test ├── bufdel.test ├── camii.test ├── compnoun.test ├── copula.test ├── devoicing.test ├── deye.test ├── dup.test ├── family.test ├── i-buffery.test ├── kiku.test ├── make-expect.sh ├── mi.test ├── nominal-morphology.test ├── nompredicates.test ├── numbers.test ├── passive.test ├── pronouns.test ├── proper_names.test ├── su-exception.test ├── vepenth.test ├── verb-stem-irreg.test ├── voicing-assimilation.test ├── vowel-harmony.test └── yor-exception.test ├── tokenize.xfst └── url.lexc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/.gitignore -------------------------------------------------------------------------------- /.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/.todo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/TODO -------------------------------------------------------------------------------- /abbr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/abbr.txt -------------------------------------------------------------------------------- /analyze_guess.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/analyze_guess.xfst -------------------------------------------------------------------------------- /analyzer.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/analyzer.lexc -------------------------------------------------------------------------------- /analyzer.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/analyzer.xfst -------------------------------------------------------------------------------- /converters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/converters/Makefile -------------------------------------------------------------------------------- /converters/o2t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/converters/o2t.py -------------------------------------------------------------------------------- /converters/o2t.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/converters/o2t.xfst -------------------------------------------------------------------------------- /doc/lrec2010-paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/lrec2010-paper.pdf -------------------------------------------------------------------------------- /doc/manual/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/.gitignore -------------------------------------------------------------------------------- /doc/manual/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/Makefile -------------------------------------------------------------------------------- /doc/manual/figures/nomfsa1.tikz.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/figures/nomfsa1.tikz.tex -------------------------------------------------------------------------------- /doc/manual/morph-tags-old-and-new.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/morph-tags-old-and-new.txt -------------------------------------------------------------------------------- /doc/manual/trmorph-manual.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/trmorph-manual.bib -------------------------------------------------------------------------------- /doc/manual/trmorph-manual.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/trmorph-manual.sty -------------------------------------------------------------------------------- /doc/manual/trmorph-manual.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/manual/trmorph-manual.tex -------------------------------------------------------------------------------- /doc/options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/options.txt -------------------------------------------------------------------------------- /doc/trmorph-manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/trmorph-manual.pdf -------------------------------------------------------------------------------- /doc/unanlyzed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/doc/unanlyzed -------------------------------------------------------------------------------- /exceptions.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/exceptions.lexc -------------------------------------------------------------------------------- /g2p.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/g2p.xfst -------------------------------------------------------------------------------- /guesser.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/guesser.lexc -------------------------------------------------------------------------------- /guesser.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/guesser.xfst -------------------------------------------------------------------------------- /hyphenate.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/hyphenate.xfst -------------------------------------------------------------------------------- /lexicon/abbreviation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/abbreviation -------------------------------------------------------------------------------- /lexicon/adjective: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/adjective -------------------------------------------------------------------------------- /lexicon/adverb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/adverb -------------------------------------------------------------------------------- /lexicon/alpha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/alpha -------------------------------------------------------------------------------- /lexicon/childes-forms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/childes-forms -------------------------------------------------------------------------------- /lexicon/circumflex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/circumflex -------------------------------------------------------------------------------- /lexicon/clitics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/clitics -------------------------------------------------------------------------------- /lexicon/common_typos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/common_typos -------------------------------------------------------------------------------- /lexicon/conjunction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/conjunction -------------------------------------------------------------------------------- /lexicon/determiner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/determiner -------------------------------------------------------------------------------- /lexicon/emoticon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/emoticon -------------------------------------------------------------------------------- /lexicon/interjection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/interjection -------------------------------------------------------------------------------- /lexicon/location_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/location_names -------------------------------------------------------------------------------- /lexicon/new-items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/new-items -------------------------------------------------------------------------------- /lexicon/noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/noun -------------------------------------------------------------------------------- /lexicon/onomatopoeia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/onomatopoeia -------------------------------------------------------------------------------- /lexicon/part-word.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/part-word.sh -------------------------------------------------------------------------------- /lexicon/part_word: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/part_word -------------------------------------------------------------------------------- /lexicon/person_names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/person_names -------------------------------------------------------------------------------- /lexicon/person_names.foreign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/person_names.foreign -------------------------------------------------------------------------------- /lexicon/postposition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/postposition -------------------------------------------------------------------------------- /lexicon/pronoun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/pronoun -------------------------------------------------------------------------------- /lexicon/proper_noun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/proper_noun -------------------------------------------------------------------------------- /lexicon/punctuation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/punctuation -------------------------------------------------------------------------------- /lexicon/qwords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/qwords -------------------------------------------------------------------------------- /lexicon/reduplication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/reduplication -------------------------------------------------------------------------------- /lexicon/reduplication.part: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/reduplication.part -------------------------------------------------------------------------------- /lexicon/symbol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/symbol -------------------------------------------------------------------------------- /lexicon/tinglish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/tinglish -------------------------------------------------------------------------------- /lexicon/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/todo -------------------------------------------------------------------------------- /lexicon/verb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/verb -------------------------------------------------------------------------------- /lexicon/verb_la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lexicon/verb_la -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/ascii-allcaps.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ascii-allcaps.xfst -------------------------------------------------------------------------------- /lib/ascii-capitalize.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ascii-capitalize.xfst -------------------------------------------------------------------------------- /lib/ascii-lower.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ascii-lower.xfst -------------------------------------------------------------------------------- /lib/ascii-upper.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ascii-upper.xfst -------------------------------------------------------------------------------- /lib/ascii.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ascii.xfst -------------------------------------------------------------------------------- /lib/digit.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/digit.xfst -------------------------------------------------------------------------------- /lib/dns-tld-short.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/dns-tld-short.xfst -------------------------------------------------------------------------------- /lib/dns-tld.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/dns-tld.xfst -------------------------------------------------------------------------------- /lib/email-string.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/email-string.xfst -------------------------------------------------------------------------------- /lib/email.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/email.xfst -------------------------------------------------------------------------------- /lib/internet-domain-name.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/internet-domain-name.xfst -------------------------------------------------------------------------------- /lib/ip-addr.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/ip-addr.xfst -------------------------------------------------------------------------------- /lib/makedepend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/makedepend.sh -------------------------------------------------------------------------------- /lib/url.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/lib/url.xfst -------------------------------------------------------------------------------- /makedepend.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/makedepend.sh -------------------------------------------------------------------------------- /morph-phon.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/morph-phon.xfst -------------------------------------------------------------------------------- /morph.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/morph.lexc -------------------------------------------------------------------------------- /multi-char.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/multi-char.lexc -------------------------------------------------------------------------------- /number.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/number.lexc -------------------------------------------------------------------------------- /options.h-default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/options.h-default -------------------------------------------------------------------------------- /scripts/disambiguate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/scripts/disambiguate.py -------------------------------------------------------------------------------- /scripts/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/scripts/example.py -------------------------------------------------------------------------------- /scripts/foma-exmaple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/scripts/foma-exmaple.c -------------------------------------------------------------------------------- /scripts/segment-filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/scripts/segment-filter.py -------------------------------------------------------------------------------- /scripts/tokenize.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/scripts/tokenize.sed -------------------------------------------------------------------------------- /segment.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/segment.xfst -------------------------------------------------------------------------------- /stemmer.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/stemmer.xfst -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/15_punct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/15_punct -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/README -------------------------------------------------------------------------------- /test/aor.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/aor.test -------------------------------------------------------------------------------- /test/basic-tam.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/basic-tam.test -------------------------------------------------------------------------------- /test/bufdel.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/bufdel.test -------------------------------------------------------------------------------- /test/camii.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/camii.test -------------------------------------------------------------------------------- /test/compnoun.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/compnoun.test -------------------------------------------------------------------------------- /test/copula.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/copula.test -------------------------------------------------------------------------------- /test/devoicing.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/devoicing.test -------------------------------------------------------------------------------- /test/deye.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/deye.test -------------------------------------------------------------------------------- /test/dup.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/dup.test -------------------------------------------------------------------------------- /test/family.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/family.test -------------------------------------------------------------------------------- /test/i-buffery.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/i-buffery.test -------------------------------------------------------------------------------- /test/kiku.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/kiku.test -------------------------------------------------------------------------------- /test/make-expect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/make-expect.sh -------------------------------------------------------------------------------- /test/mi.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/mi.test -------------------------------------------------------------------------------- /test/nominal-morphology.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/nominal-morphology.test -------------------------------------------------------------------------------- /test/nompredicates.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/nompredicates.test -------------------------------------------------------------------------------- /test/numbers.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/numbers.test -------------------------------------------------------------------------------- /test/passive.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/passive.test -------------------------------------------------------------------------------- /test/pronouns.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/pronouns.test -------------------------------------------------------------------------------- /test/proper_names.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/proper_names.test -------------------------------------------------------------------------------- /test/su-exception.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/su-exception.test -------------------------------------------------------------------------------- /test/vepenth.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/vepenth.test -------------------------------------------------------------------------------- /test/verb-stem-irreg.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/verb-stem-irreg.test -------------------------------------------------------------------------------- /test/voicing-assimilation.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/voicing-assimilation.test -------------------------------------------------------------------------------- /test/vowel-harmony.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/vowel-harmony.test -------------------------------------------------------------------------------- /test/yor-exception.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/test/yor-exception.test -------------------------------------------------------------------------------- /tokenize.xfst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/tokenize.xfst -------------------------------------------------------------------------------- /url.lexc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coltekin/TRmorph/HEAD/url.lexc --------------------------------------------------------------------------------