Skip to content

Commit

Permalink
remove extra imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisbrookner committed Jun 3, 2024
1 parent 21e29b2 commit 89c23e8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 18 deletions.
5 changes: 1 addition & 4 deletions src/matchmaps/_compute_mr_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@
import argparse
import os
import sys
import subprocess
import time
from functools import partial
from pathlib import Path

import gemmi
import numpy as np
import reciprocalspaceship as rs

from matchmaps._phenix_utils import rigid_body_refinement_wrapper, phaser_wrapper, _remove_waters
from matchmaps._utils import (
_handle_special_positions,
make_floatgrid_from_mtz,
Expand All @@ -25,7 +23,6 @@
_cif_or_mtz_to_mtz,
_write_script,
)
from matchmaps._phenix_utils import rigid_body_refinement_wrapper, phaser_wrapper, _remove_waters


def compute_mr_difference_map(
Expand Down
7 changes: 1 addition & 6 deletions src/matchmaps/_compute_ncs_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,16 @@
import argparse
import os
import sys
import subprocess
import time
from functools import partial
from pathlib import Path

import gemmi
import numpy as np
import reciprocalspaceship as rs


from matchmaps._phenix_utils import rigid_body_refinement_wrapper, _renumber_waters
from matchmaps._utils import (
_handle_special_positions,
make_floatgrid_from_mtz,
_realspace_align_and_subtract,
_rbr_selection_parser,
_ncs_align_and_subtract,
_validate_environment,
Expand All @@ -26,7 +22,6 @@
_cif_or_mtz_to_mtz,
_write_script,
)
from matchmaps._phenix_utils import rigid_body_refinement_wrapper, _renumber_waters


def compute_ncs_difference_map(
Expand Down
10 changes: 2 additions & 8 deletions src/matchmaps/_compute_realspace_diff.py
Original file line number Diff line number Diff line change
@@ -1,20 +1,15 @@
"""Compute unbiased real space difference map."""

import argparse
import os
import sys
import glob
import subprocess
import sys
import time
from functools import partial
from pathlib import Path

import gemmi
import numpy as np
import reciprocalspaceship as rs

from IPython import embed

from matchmaps._phenix_utils import rigid_body_refinement_wrapper, _renumber_waters
from matchmaps._utils import (
_handle_special_positions,
make_floatgrid_from_mtz,
Expand All @@ -27,7 +22,6 @@
_cif_or_pdb_to_pdb,
_write_script,
)
from matchmaps._phenix_utils import rigid_body_refinement_wrapper, _renumber_waters


def compute_realspace_difference_map(
Expand Down

0 comments on commit 89c23e8

Please sign in to comment.