File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Rust
2
+
3
+ on :
4
+ push :
5
+ branches : [ "main" ]
6
+ pull_request :
7
+ branches : [ "main" ]
8
+
9
+ env :
10
+ CARGO_TERM_COLOR : always
11
+
12
+ jobs :
13
+ build :
14
+
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+ - name : Build
20
+ run : cargo build --release --verbose
21
+ - name : Run tests
22
+ run : cargo test --release --verbose
23
+ - name : Clippy run
24
+ run : cargo clippy --release
Original file line number Diff line number Diff line change
1
+ # ToDo-list for the Global aim: Scaling up to the diploig genome scale assembler
2
+
3
+ ## Adaptive tuning for the error rate
4
+
5
+ - The error rate ** must be** uniformal/independnt from the sequence context...
6
+
7
+ ## Speeding up
8
+
9
+ - Removing
10
+
11
+ ## Wise selection of the chunks
12
+
13
+ - Variable-length chunks might be the way to go
You can’t perform that action at this time.
0 commit comments