Skip to content

Commit

Permalink
removed types from precomputed_error_models
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanLelieveld committed Feb 12, 2024
1 parent fe9c5f4 commit cac4365
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions iss/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import os
import random
import sys
from typing import Dict

import numpy as np
from Bio import SeqIO
Expand Down Expand Up @@ -364,7 +363,7 @@ def load_error_model(mode, seed, model, fragment_length, fragment_length_sd):

logger.info("Using %s ErrorModel" % mode)

precomputed_error_models: Dict[str, str] = {
precomputed_error_models = {
"hiseq": os.path.join(os.path.dirname(__file__), "profiles/HiSeq"),
"novaseq": os.path.join(os.path.dirname(__file__), "profiles/NovaSeq"),
"miseq": os.path.join(os.path.dirname(__file__), "profiles/miSeq_0.npz"),
Expand Down

0 comments on commit cac4365

Please sign in to comment.