Skip to content
Snippets Groups Projects
Commit f4092679 authored by Mate Balajti's avatar Mate Balajti
Browse files

refactor: minor code updates

parent 05a950e4
No related branches found
No related tags found
1 merge request!60refactor: minor updates
......@@ -31,4 +31,4 @@ lint-test-job: # This job also runs in the test stage.
- pip install -e .
- flake8 --docstring-convention google term_frag_sel/ tests/
- pylint term_frag_sel/ tests/
- mypy term_frag_sel/
- mypy term_frag_sel/ tests/
"""Set up project."""
from pathlib import Path
from setuptools import setup, find_packages
from setuptools import setup, find_packages # type: ignore
project_root_dir = Path(__file__).parent.resolve()
with open(project_root_dir / "requirements.txt",
......
"""Test utils.py functions."""
import pandas as pd
import pandas as pd # type: ignore
import pytest
from Bio import SeqIO
from Bio import SeqIO # type: ignore
from term_frag_sel.fragmentation import fragmentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment