Skip to content

Commit

Permalink
removing print logging
Browse files Browse the repository at this point in the history
  • Loading branch information
nrminor committed Sep 18, 2024
1 parent 39b5dd0 commit 66c6650
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "give_a_sheet"
description = "Toolkit for generating input samplesheets for a variety of nf-core pipelines."
version = "0.1.5"
version = "0.1.6"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion src/scrnaseq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ fn retrieve_samples(file_paths: &[Rc<Path>]) -> Result<HashSet<Rc<str>>> {
})
.map(|x| {
let id = illumina_pattern.replace_all(&x, "").to_string();
eprintln!("{}", id);
Rc::from(id)
})
.collect();
Expand Down

0 comments on commit 66c6650

Please sign in to comment.