We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 68b540b + e8efee9 commit a0ad253Copy full SHA for a0ad253
2 files changed
README.md
@@ -17,7 +17,7 @@ The provided packages should be used where possible. We understand that some use
17
```bash
18
git clone https://github.com/nanoporetech/modkit.git
19
cd modkit
20
-cargo install --path .
+cargo install --path modkit
21
# or
22
cargo install --git https://github.com/nanoporetech/modkit.git
23
```
modkit-core/src/bedmethyl_util/mod.rs
@@ -39,6 +39,9 @@ impl<R: BufRead> BedMethylStream<R> {
39
if b == 0 {
40
break;
41
}
42
+ if buf.trim_start().starts_with('#') {
43
+ continue;
44
+ }
45
let bm_record = BedMethylLine::parse(&buf)?;
46
let keep = mod_codes.contains(&bm_record.raw_mod_code);
47
if keep {
0 commit comments