Skip to content

Commit

Permalink
test absolute import
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Apr 9, 2024
1 parent e317755 commit 6a1cd04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bean/cli/qc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main(args):
comp_cond2=args.lfc_cond2,
ctrl_cond=args.control_condition,
exp_id=args.out_report_prefix,
recalculate_edits=~args.dont_recalculate_edits,
recalculate_edits=(not args.dont_recalculate_edits),
base_edit_data=args.base_edit_data,
remove_bad_replicates=args.remove_bad_replicates,
),
Expand Down
4 changes: 2 additions & 2 deletions bean/mapping/_supporting_fn.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import gzip
from Bio import SeqIO
from Bio.Seq import Seq
from .CRISPResso2Align import read_matrix, global_align_base_editor
from ..framework.Edit import Allele, Edit
from bean.mapping.CRISPResso2Align import read_matrix, global_align_base_editor
from bean.framework.Edit import Allele, Edit


class InputFileError(Exception):
Expand Down

0 comments on commit 6a1cd04

Please sign in to comment.