├── .github ├── dependabot.yml └── workflows │ └── test.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── haem.pyi ├── pyproject.toml ├── src ├── aminoacid.rs ├── aminoacidsequence.rs ├── dnabase.rs ├── dnasequence.rs ├── lib.rs ├── member.rs ├── rnabase.rs ├── rnasequence.rs ├── sequence.rs └── utils.rs ├── tests ├── test_amino_acid.py ├── test_amino_acid_sequence.py ├── test_dna_base.py ├── test_dna_sequence.py ├── test_rna_base.py └── test_rna_sequence.py └── uv.lock /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/README.md -------------------------------------------------------------------------------- /haem.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/haem.pyi -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/aminoacid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/aminoacid.rs -------------------------------------------------------------------------------- /src/aminoacidsequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/aminoacidsequence.rs -------------------------------------------------------------------------------- /src/dnabase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/dnabase.rs -------------------------------------------------------------------------------- /src/dnasequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/dnasequence.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/member.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/member.rs -------------------------------------------------------------------------------- /src/rnabase.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/rnabase.rs -------------------------------------------------------------------------------- /src/rnasequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/rnasequence.rs -------------------------------------------------------------------------------- /src/sequence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/sequence.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/test_amino_acid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_amino_acid.py -------------------------------------------------------------------------------- /tests/test_amino_acid_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_amino_acid_sequence.py -------------------------------------------------------------------------------- /tests/test_dna_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_dna_base.py -------------------------------------------------------------------------------- /tests/test_dna_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_dna_sequence.py -------------------------------------------------------------------------------- /tests/test_rna_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_rna_base.py -------------------------------------------------------------------------------- /tests/test_rna_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/tests/test_rna_sequence.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BooleanCat/haem/HEAD/uv.lock --------------------------------------------------------------------------------