Skip to content

Commit

Permalink
Remove spaces from output
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Lonsdale authored and Andrew Lonsdale committed Feb 9, 2022
1 parent 8c87f5a commit 2d216f3
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 @@ -958,7 +958,7 @@ info!("Spawning {} threads for Mapping.\n", num_threads);
let scaleprop = prop / scalefactor;


writeln!(output_file,"{} , {} , {}, {}, {}, {}, {}, {}, {}",gene_id, key, value,mapped_read_counter , gene_length,average_read_length,scalefactor,prop, scaleprop);
writeln!(output_file,"{},{},{},{},{},{},{},{},{}",gene_id, key, value,mapped_read_counter , gene_length,average_read_length,scalefactor,prop, scaleprop);
}

//println!("gene map {:?}",&index.tx_gene_mapping);
Expand Down

0 comments on commit 2d216f3

Please sign in to comment.