Skip to content

Commit

Permalink
Very minor edit.
Browse files Browse the repository at this point in the history
  • Loading branch information
Euphrasiologist committed May 3, 2022
1 parent cb7168b commit 8110b3d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/explore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -425,9 +425,9 @@ fn merge_rotated_repeats<'a>(
// to output later
output_vec_tsv.push(TsvTelomericRepeat {
id: id.to_owned(),
start: start,
end: end,
count: count,
start,
end,
count,
sequence: data[it].sequence.clone(),
seq_len: chunk_length,
});
Expand Down Expand Up @@ -456,16 +456,16 @@ fn merge_rotated_repeats<'a>(
// to output later
output_vec_tsv.push(TsvTelomericRepeat {
id: id.to_owned(),
start: start,
end: end,
count: count,
start,
end,
count,
sequence: data[it].sequence.clone(),
seq_len: chunk_length,
});
// and collect for guessing telomeric repeat
output_vec.push(FormatTelomericRepeat {
sequence: data[it].sequence.clone(),
count: count,
count,
sequence_len: chunk_length,
});
}
Expand Down

0 comments on commit 8110b3d

Please sign in to comment.