Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Patro committed Aug 7, 2020
1 parent 9f8f6ba commit 5a3c9f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libradicl/src/quant.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use crossbeam_queue::ArrayQueue;
// use fasthash::sea;
use needletail::bitkmer::*;
use scroll::Pwrite;
use std::collections::{HashMap};
use std::collections::HashMap;
use std::fs;
use std::fs::File;
use std::io;
Expand Down Expand Up @@ -79,9 +79,9 @@ fn extract_graph(
let mut _unidirected = 0u64;

let mut graph = DiGraphMap::<(u32, u32), ()>::new();
let mut hset = Vec::with_capacity(eqmap.num_eq_classes());
let mut hset = Vec::with_capacity(eqmap.num_eq_classes());

// insert all of the nodes up front to avoid redundant
// insert all of the nodes up front to avoid redundant
// checks later.
for eqid in 0..eqmap.num_eq_classes() {
// get the info Vec<(UMI, frequency)>
Expand Down

0 comments on commit 5a3c9f7

Please sign in to comment.