bio-seq-derive 4.11.0

Derive macros for the bio-seq crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: Invalid IUPAC code at position 4: x
 --> tests/fail/bad_sequence.rs:4:16
  |
4 |     let _seq = iupac!("ACGTx");
  |                ^^^^^^^^^^^^^^^
  |
  = note: this error originates in the macro `iupac` (in Nightly builds, run with -Z macro-backtrace for more info)

error: Invalid DNA base at position 0: a
 --> tests/fail/bad_sequence.rs:5:16
  |
5 |     let _seq = dna!("asdf");
  |                ^^^^^^^^^^^^
  |
  = note: this error originates in the macro `dna` (in Nightly builds, run with -Z macro-backtrace for more info)