Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Jul 12, 2024
1 parent 1676c04 commit b5a3d55
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 20 deletions.
18 changes: 6 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ csv = "1.3.0"
mimalloc = { version = "0.1.43", default-features = false }
num-format = "0.4.4"
num_cpus = "1.16.0"
bio-types = { version = "1.0.1", default-features = true, features = ["serde"] }
bio-types = { version = "1.0.2", default-features = true, features = ["serde"] }
itertools = "0.13.0"
thiserror = "1.0.61"
thiserror = "1.0.62"
statrs = "0.17.1"
sce = { git = "https://github.com/parazodiac/SingleCellExperiment", branch = "dev", version = "0.2.0" }

Expand Down
7 changes: 1 addition & 6 deletions src/quant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ pub fn quantify(quant_opts: QuantOpts) -> anyhow::Result<()> {
if compressed_input {
let i_file =
File::open(parent.join("map.collated.rad.sz")).context("run collate before quant")?;
let br = BufReader::new(snap::read::FrameDecoder::new(BufReader::new(&i_file)));
let br = BufReader::new(snap::read::FrameDecoder::new(&i_file));

info!(
log,
Expand Down Expand Up @@ -544,11 +544,6 @@ pub fn do_quantify<T: BufRead>(mut br: T, quant_opts: QuantOpts) -> anyhow::Resu
// the number of reference sequences
let ref_count = hdr.ref_count as u32;

// TODO -- maybe delete March 5, 2024
// the types for the barcodes and umis
// let bc_type = rad_types::decode_int_type_tag(bct).expect("unsupported barcode type id.");
// let umi_type = rad_types::decode_int_type_tag(umit).expect("unsupported umi type id.");

// the number of genes (different than the number of reference sequences, which are transcripts)
let num_genes = gene_name_to_id.len();

Expand Down

0 comments on commit b5a3d55

Please sign in to comment.