bustools_cli

Crates.iobustools_cli
lib.rsbustools_cli
version0.6.0
created_at2023-06-27 23:56:57.715388+00
updated_at2025-09-22 19:34:55.302653+00
descriptionRust reimplementation of bustools for scRNAseq processing
homepagehttps://codeberg.org/redst4r/bustools_rs
repositoryhttps://codeberg.org/redst4r/bustools_rs
max_upload_size
id901731
size87,688
Michael Strasser (redst4r)

documentation

README

Readme

Rust version of bustools command line interface. Built on the bustools_core library crate.

Example

# sorting
rustbustools --output /tmp/sorted.bus sort --ifile /tmp/unsorted.bus

# correcting CBs
rustbustools --output /tmp/corrected.bus sort --ifile /tmp/sorted.bus --whitelist /tmp/10x_whitelist.txt

# inspecting
rustbustools --output /dev/null --ifile /tmp/sorted.bus

# count
rustbustools --output /tmp/count_folder --ifile /tmp/sorted.bus --t2g /tmp/transcripts_to_gene.txt

# compression
# -N is the chunksize of a busz block
rustbustools --output /tmp/compressed.busz -i /tmp/sorted.bus -N 10000

# decompression
rustbustools --output /tmp/plain.bus -i /tmp/compressed.busz
Commit count: 0

cargo fmt