File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 1010//!
1111#![ allow( non_snake_case) ]
1212pub mod embl;
13+ pub mod align;
1314pub mod gbk;
1415pub mod blast;
1516pub mod record;
You can’t perform that action at this time.
0 commit comments