Skip to content

Commit d0fea68

Browse files
committed
Merge branch 'dev'
2 parents 923b150 + e6c4471 commit d0fea68

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

haplotyper/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)