├── LICENSE ├── README.md ├── cpp_thread_pool ├── README.md ├── main.cpp └── thread_pool.hpp ├── pairwise_genome_alignment ├── README.md └── pairwise_genome_alignment.py └── parallel_run_commands ├── README.md └── parallel_run_commands.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/README.md -------------------------------------------------------------------------------- /cpp_thread_pool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/cpp_thread_pool/README.md -------------------------------------------------------------------------------- /cpp_thread_pool/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/cpp_thread_pool/main.cpp -------------------------------------------------------------------------------- /cpp_thread_pool/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/cpp_thread_pool/thread_pool.hpp -------------------------------------------------------------------------------- /pairwise_genome_alignment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/pairwise_genome_alignment/README.md -------------------------------------------------------------------------------- /pairwise_genome_alignment/pairwise_genome_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/pairwise_genome_alignment/pairwise_genome_alignment.py -------------------------------------------------------------------------------- /parallel_run_commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/parallel_run_commands/README.md -------------------------------------------------------------------------------- /parallel_run_commands/parallel_run_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wen-chen/naughty_monkey/HEAD/parallel_run_commands/parallel_run_commands.py --------------------------------------------------------------------------------