Skip to content

Commit

Permalink
Fix output csv format and heading spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lonsdale authored and Andrew Lonsdale committed Feb 8, 2022
1 parent 831bb3b commit 8c87f5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pseudoaligner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ info!("Spawning {} threads for Mapping.\n", num_threads);

}
// can add in the tx_gene map entry, and gene length entry here
writeln!(output_file,"Gene, Deletion,Count,Total, GeneLength, ReadLength, Scale Factor,Proportion,Scaled Proportion");
writeln!(output_file,"Gene,Deletion,Count,Total,GeneLength,ReadLength,ScaleFactor,Proportion,ScaledProportion");
//for (key, value) in &frequency.keys().sorted() {
for key in &frequency.keys().sorted() {
let value = &frequency[&key as &str];
Expand Down

0 comments on commit 8c87f5a

Please sign in to comment.