Skip to content

Commit

Permalink
ancient changes...
Browse files Browse the repository at this point in the history
  • Loading branch information
stela2502 committed Sep 10, 2024
1 parent 82ba8ad commit 68f9bdd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 18 deletions.
4 changes: 2 additions & 2 deletions src/analysis/gene_mapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -509,13 +509,13 @@ impl AnalysisGeneMapper{
},
Err(MappingError::NoMatch) => {
// I want to be able to check why this did not work
report.write_to_ofile( Fspot::Buff1,
/*report.write_to_ofile( Fspot::Buff1,
format!(">Cell{cell_id} no gene detected\n{}\n", &data[i].1)
);
report.write_to_ofile( Fspot::Buff2,
format!(">Cell{cell_id} no gene detected\n{}\n", &data[i].0 )
);
);*/
report.no_data +=1;
},
Err(MappingError::MultiMatch) => {
Expand Down
4 changes: 2 additions & 2 deletions src/analysis/genomic_mapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -388,13 +388,13 @@ impl AnalysisGenomicMapper{
},
Err(MappingError::NoMatch) => {
// I want to be able to check why this did not work
report.write_to_ofile( Fspot::Buff1,
/*report.write_to_ofile( Fspot::Buff1,
format!(">Cell{cell_id} no gene detected\n{}\n", &data[i].1)
);
report.write_to_ofile( Fspot::Buff2,
format!(">Cell{cell_id} no gene detected\n{}\n", &data[i].0 )
);
);*/
report.no_data +=1;
},
Err(MappingError::MultiMatch) => {
Expand Down
14 changes: 0 additions & 14 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,6 @@
clippy::explicit_auto_deref
)]

pub fn add(left: usize, right: usize) -> usize {
left + right
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}

pub mod analysis;
pub mod errors;
Expand Down
1 change: 1 addition & 0 deletions testData/BD_results/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ Ighm
mm39:chr12:113392000:113393500:Ighj_area.fasta
test
~.lock*
Untitled.html

0 comments on commit 68f9bdd

Please sign in to comment.