Skip to content

Commit

Permalink
properly output non-human reads (fixes mbhall88#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpauvert committed Jul 21, 2024
1 parent 76a8456 commit 0868c85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ fn main() -> Result<()> {
tmpdir.path().join("kraken_out.fq")
};
let outfile = outfile.to_string_lossy().to_string();
kraken_cmd.extend(&["--classified-out", &outfile]);
kraken_cmd.extend(&["--unclassified-out", &outfile]);

kraken_cmd.extend(input.iter().map(|p| p.to_str().unwrap()));
info!("Running kraken2...");
Expand Down

0 comments on commit 0868c85

Please sign in to comment.