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

feat: add ignore to mypy

parent 777f76af
No related branches found
No related tags found
1 merge request!6feat: add testing and linting to CI workflow
Pipeline #17258 passed
"""cDNA generator."""
import warnings
from typing import Optional, List, Dict, Any
import pandas as pd
from Bio import SeqIO
from Bio.Seq import Seq
from Bio.SeqRecord import SeqRecord
from gtfparse import read_gtf
import pandas as pd # type: ignore
from Bio import SeqIO # type: ignore
from Bio.Seq import Seq # type: ignore
from Bio.SeqRecord import SeqRecord # type: ignore
from gtfparse import read_gtf # type: ignore
# ignore warnings from read_gtf
warnings.filterwarnings(action="ignore", category=FutureWarning)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment