Skip to content

Commit 2a50960

Browse files
committed
renaming fields for clarity and removing warnings on test
2 parents 577286c + 4842a7d commit 2a50960

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Protein parameters such as:
2727
- [x] Counted amino acids & as percentage
2828
- [x] Aromaticity
2929
- [ ] Parsing phylogenetic trees
30-
- [ ] Parsing multiple sequence alignments
30+
- [x] Parsing multiple sequence alignments
3131
- [ ] Methylation data parsing
3232
- [x] pyo3 integration
3333

microBioRust/src/align.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,11 +231,11 @@ impl<Kind> Alignment<Kind> {
231231
let stdout = io::stdout();
232232
let mut handle = BufWriter::new(stdout.lock());
233233
let max_id_width = rows.clone().map(|i| self.ids[i].len()).max().unwrap_or(10).min(20); //capped at 20
234-
// 1. Iterate through columns in "blocks"
234+
//iterate through columns in "blocks"
235235
for block_start in (cols.start..cols.end).step_by(block_width) {
236236
let block_end = (block_start + block_width).min(cols.end);
237237

238-
// 2. For each block, print every requested row
238+
//for each block, print every requested row
239239
for r_idx in rows.clone() {
240240
if let Some(id) = self.ids.get(r_idx) {
241241
//truncate or pad ID for alignment

microBioRust/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
//!
1111
#![allow(non_snake_case)]
1212
pub mod embl;
13+
pub mod align;
1314
pub mod gbk;
1415
pub mod blast;
1516
pub mod record;

0 commit comments

Comments
 (0)