Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Non-Greedy-Unbalanced-Huffman-Tree-Compressor-for-single-and-multi-fasta-files/README
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (25 sloc)
670 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== Non-Greedy Unbalanced Huffman Tree Compressor for single and multi fasta files | |
# This package contains the following files: | |
- README | |
This file. | |
- NUHT_Compress | |
The Compressor | |
- NUHT_Decompress | |
The Decompressor | |
--Software version-- | |
This is version 1.0.0, supporting compressing of genome fasta and multi-fasta files. | |
--Installation-- | |
The tool is already in binary; there is no need for installation. | |
--Running the Tools-- | |
- NUHT_Compress | |
- Run command: | |
Mac & Linux: | |
./NUHT_Compress example.fasta | |
- Output/: | |
example.nuht | |
- NUHT_Decompress | |
- Run command: | |
Mac & Linux: | |
./NUHT_Decompress example.nuht | |
- Output/: | |
example_.fasta |