├── .flake8 ├── .gitignore ├── README.md ├── conda ├── before_build.sh ├── glow │ ├── 1.4.1 │ │ ├── build.sh │ │ └── meta.yaml │ └── latest ├── gtags │ ├── 6.6.7 │ │ ├── build.sh │ │ └── meta.yaml │ ├── 6.6.8 │ │ ├── build.sh │ │ └── meta.yaml │ └── latest ├── neovim │ ├── 0.7.0 │ │ ├── build.sh │ │ └── meta.yaml │ └── latest ├── python-neovim │ ├── 0.3.1 │ │ └── meta.yaml │ ├── 0.4.3 │ │ └── meta.yaml │ └── latest ├── q │ ├── 2.0.19 │ │ ├── build.sh │ │ ├── conda_build_config.yaml │ │ └── meta.yaml │ ├── 3.1.6 │ │ ├── build.sh │ │ ├── conda_build_config.yaml │ │ └── meta.yaml │ └── latest ├── tig │ ├── 2.5.4 │ │ ├── build.sh │ │ └── meta.yaml │ ├── 2.5.5 │ │ ├── build.sh │ │ └── meta.yaml │ └── latest ├── tmux │ ├── 3.2a │ │ ├── build.sh │ │ └── meta.yaml │ └── latest └── twf │ ├── 20211204 │ ├── build.sh │ └── meta.yaml │ └── latest ├── configure ├── doc └── fatt.md ├── script ├── .editorconfig ├── BLASTM8Parse.pm ├── cco ├── convertsequence ├── csv2html ├── fixshebang ├── gcc-color ├── gfwhich ├── headtail ├── icc-color ├── imgcat2 ├── ispcr ├── json2csv ├── mydaemon ├── pbjellysummary2json ├── plotr ├── quastreport2json ├── recompressbyxz ├── reduce_genome_feature ├── rep ├── sha_scan ├── sha_scanp └── split_paf ├── src ├── fatt.cc ├── sieve.cc ├── sqdb.cc ├── sqdb.h ├── sqlite3.c └── sqlite3.h ├── undocumentedscript ├── BLASTCSVParse.pm ├── BLASTM8Parse.pm ├── MiscLib.pm ├── ParallelExec.pm ├── Primer3.pm ├── blastcsv2easygenetrack.pl ├── blastcsv2rflpmap.pl ├── blastm8alignments2alignmentsummary.pl ├── blastreport2dotplot.pl ├── multigrep.pl ├── parablast.pl ├── parablat.pl ├── primerdesign.pl ├── pslTakeBest.pl ├── renameregex.pl ├── seqkitsstat2csv.pl ├── seqkitstat2vds.pl ├── splitfasta.pl ├── tabular2csv.pl ├── tabular2json.pl └── xmlex.pl ├── waf └── wscript /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/README.md -------------------------------------------------------------------------------- /conda/before_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/before_build.sh -------------------------------------------------------------------------------- /conda/glow/1.4.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/glow/1.4.1/build.sh -------------------------------------------------------------------------------- /conda/glow/1.4.1/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/glow/1.4.1/meta.yaml -------------------------------------------------------------------------------- /conda/glow/latest: -------------------------------------------------------------------------------- 1 | 1.4.1 -------------------------------------------------------------------------------- /conda/gtags/6.6.7/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/gtags/6.6.7/build.sh -------------------------------------------------------------------------------- /conda/gtags/6.6.7/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/gtags/6.6.7/meta.yaml -------------------------------------------------------------------------------- /conda/gtags/6.6.8/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/gtags/6.6.8/build.sh -------------------------------------------------------------------------------- /conda/gtags/6.6.8/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/gtags/6.6.8/meta.yaml -------------------------------------------------------------------------------- /conda/gtags/latest: -------------------------------------------------------------------------------- 1 | 6.6.8 -------------------------------------------------------------------------------- /conda/neovim/0.7.0/build.sh: -------------------------------------------------------------------------------- 1 | 2 | cp -r bin lib share ${PREFIX}/ 3 | -------------------------------------------------------------------------------- /conda/neovim/0.7.0/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/neovim/0.7.0/meta.yaml -------------------------------------------------------------------------------- /conda/neovim/latest: -------------------------------------------------------------------------------- 1 | 0.7.0 -------------------------------------------------------------------------------- /conda/python-neovim/0.3.1/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/python-neovim/0.3.1/meta.yaml -------------------------------------------------------------------------------- /conda/python-neovim/0.4.3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/python-neovim/0.4.3/meta.yaml -------------------------------------------------------------------------------- /conda/python-neovim/latest: -------------------------------------------------------------------------------- 1 | 0.4.3 -------------------------------------------------------------------------------- /conda/q/2.0.19/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/2.0.19/build.sh -------------------------------------------------------------------------------- /conda/q/2.0.19/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/2.0.19/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/q/2.0.19/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/2.0.19/meta.yaml -------------------------------------------------------------------------------- /conda/q/3.1.6/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/3.1.6/build.sh -------------------------------------------------------------------------------- /conda/q/3.1.6/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/3.1.6/conda_build_config.yaml -------------------------------------------------------------------------------- /conda/q/3.1.6/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/q/3.1.6/meta.yaml -------------------------------------------------------------------------------- /conda/q/latest: -------------------------------------------------------------------------------- 1 | 3.1.6 -------------------------------------------------------------------------------- /conda/tig/2.5.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tig/2.5.4/build.sh -------------------------------------------------------------------------------- /conda/tig/2.5.4/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tig/2.5.4/meta.yaml -------------------------------------------------------------------------------- /conda/tig/2.5.5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tig/2.5.5/build.sh -------------------------------------------------------------------------------- /conda/tig/2.5.5/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tig/2.5.5/meta.yaml -------------------------------------------------------------------------------- /conda/tig/latest: -------------------------------------------------------------------------------- 1 | 2.5.5 -------------------------------------------------------------------------------- /conda/tmux/3.2a/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tmux/3.2a/build.sh -------------------------------------------------------------------------------- /conda/tmux/3.2a/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/tmux/3.2a/meta.yaml -------------------------------------------------------------------------------- /conda/tmux/latest: -------------------------------------------------------------------------------- 1 | 3.2a -------------------------------------------------------------------------------- /conda/twf/20211204/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/twf/20211204/build.sh -------------------------------------------------------------------------------- /conda/twf/20211204/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/conda/twf/20211204/meta.yaml -------------------------------------------------------------------------------- /conda/twf/latest: -------------------------------------------------------------------------------- 1 | 20211204 -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/configure -------------------------------------------------------------------------------- /doc/fatt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/doc/fatt.md -------------------------------------------------------------------------------- /script/.editorconfig: -------------------------------------------------------------------------------- 1 | [*] 2 | indent_style = space 3 | tab_size = 4 4 | -------------------------------------------------------------------------------- /script/BLASTM8Parse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/BLASTM8Parse.pm -------------------------------------------------------------------------------- /script/cco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/cco -------------------------------------------------------------------------------- /script/convertsequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/convertsequence -------------------------------------------------------------------------------- /script/csv2html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/csv2html -------------------------------------------------------------------------------- /script/fixshebang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/fixshebang -------------------------------------------------------------------------------- /script/gcc-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/gcc-color -------------------------------------------------------------------------------- /script/gfwhich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/gfwhich -------------------------------------------------------------------------------- /script/headtail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/headtail -------------------------------------------------------------------------------- /script/icc-color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/icc-color -------------------------------------------------------------------------------- /script/imgcat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/imgcat2 -------------------------------------------------------------------------------- /script/ispcr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/ispcr -------------------------------------------------------------------------------- /script/json2csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/json2csv -------------------------------------------------------------------------------- /script/mydaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/mydaemon -------------------------------------------------------------------------------- /script/pbjellysummary2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/pbjellysummary2json -------------------------------------------------------------------------------- /script/plotr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/plotr -------------------------------------------------------------------------------- /script/quastreport2json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/quastreport2json -------------------------------------------------------------------------------- /script/recompressbyxz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/recompressbyxz -------------------------------------------------------------------------------- /script/reduce_genome_feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/reduce_genome_feature -------------------------------------------------------------------------------- /script/rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/rep -------------------------------------------------------------------------------- /script/sha_scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/sha_scan -------------------------------------------------------------------------------- /script/sha_scanp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/sha_scanp -------------------------------------------------------------------------------- /script/split_paf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/script/split_paf -------------------------------------------------------------------------------- /src/fatt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/fatt.cc -------------------------------------------------------------------------------- /src/sieve.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/sieve.cc -------------------------------------------------------------------------------- /src/sqdb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/sqdb.cc -------------------------------------------------------------------------------- /src/sqdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/sqdb.h -------------------------------------------------------------------------------- /src/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/sqlite3.c -------------------------------------------------------------------------------- /src/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/src/sqlite3.h -------------------------------------------------------------------------------- /undocumentedscript/BLASTCSVParse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/BLASTCSVParse.pm -------------------------------------------------------------------------------- /undocumentedscript/BLASTM8Parse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/BLASTM8Parse.pm -------------------------------------------------------------------------------- /undocumentedscript/MiscLib.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/MiscLib.pm -------------------------------------------------------------------------------- /undocumentedscript/ParallelExec.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/ParallelExec.pm -------------------------------------------------------------------------------- /undocumentedscript/Primer3.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/Primer3.pm -------------------------------------------------------------------------------- /undocumentedscript/blastcsv2easygenetrack.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/blastcsv2easygenetrack.pl -------------------------------------------------------------------------------- /undocumentedscript/blastcsv2rflpmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/blastcsv2rflpmap.pl -------------------------------------------------------------------------------- /undocumentedscript/blastm8alignments2alignmentsummary.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/blastm8alignments2alignmentsummary.pl -------------------------------------------------------------------------------- /undocumentedscript/blastreport2dotplot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/blastreport2dotplot.pl -------------------------------------------------------------------------------- /undocumentedscript/multigrep.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/multigrep.pl -------------------------------------------------------------------------------- /undocumentedscript/parablast.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/parablast.pl -------------------------------------------------------------------------------- /undocumentedscript/parablat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/parablat.pl -------------------------------------------------------------------------------- /undocumentedscript/primerdesign.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/primerdesign.pl -------------------------------------------------------------------------------- /undocumentedscript/pslTakeBest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/pslTakeBest.pl -------------------------------------------------------------------------------- /undocumentedscript/renameregex.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/renameregex.pl -------------------------------------------------------------------------------- /undocumentedscript/seqkitsstat2csv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/seqkitsstat2csv.pl -------------------------------------------------------------------------------- /undocumentedscript/seqkitstat2vds.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/seqkitstat2vds.pl -------------------------------------------------------------------------------- /undocumentedscript/splitfasta.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/splitfasta.pl -------------------------------------------------------------------------------- /undocumentedscript/tabular2csv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/tabular2csv.pl -------------------------------------------------------------------------------- /undocumentedscript/tabular2json.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/tabular2json.pl -------------------------------------------------------------------------------- /undocumentedscript/xmlex.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/undocumentedscript/xmlex.pl -------------------------------------------------------------------------------- /waf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/waf -------------------------------------------------------------------------------- /wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkasa/klab/HEAD/wscript --------------------------------------------------------------------------------