Rust version of bustools command line interface. At this point, it's far from complete and correct, but rather a project to learn rust.
This is heavly built on rustbustools, which handles all the basic interactions with busfiles.
```sh
rustbustools --output /tmp/sorted.bus sort --ifile /tmp/unsorted.bus
rustbustools --output /tmp/corrected.bus sort --ifile /tmp/sorted.bus --whitelist /tmp/10x_whitelist.txt
rustbustools --output /dev/null --ifile /tmp/sorted.bus
rustbustools --output /tmp/countfolder --ifile /tmp/sorted.bus --t2g /tmp/transcriptsto_gene.txt
rustbustools --output /tmp/compressed.busz -i /tmp/sorted.bus -N 10000
rustbustools --output /tmp/plain.bus -i /tmp/compressed.busz ```