Skip to content

Commit

Permalink
New crystalform and assemblies documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ConorFWild committed Oct 23, 2023
1 parent 33962a7 commit 52542f0
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 25 deletions.
4 changes: 2 additions & 2 deletions scripts/collate.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse

from xchemalign import utils
from xchemalign.collator import Collator
from xchemalign.xchemalign import utils
from xchemalign.xchemalign.collator import Collator


def main():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from xchemalign.collator import Collator
from xchemalign.xchemalign.collator import Collator
from xchemalign.aligner import Aligner

def test_collator_upload_1(
Expand Down
Empty file.
19 changes: 1 addition & 18 deletions xchemalign/aligner.py → xchemalign/xchemalign/aligner.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,6 @@
# Local alignment imports
from ligand_neighbourhood_alignment import constants as lna_constants
from ligand_neighbourhood_alignment.align_xmaps import _align_xmaps
from ligand_neighbourhood_alignment.data import (
CanonicalSites,
ChainOutput,
ConformerSites,
Dataset,
DatasetID,
DatasetOutput,
LigandBindingEvent,
LigandBindingEvents,
LigandID,
LigandNeighbourhoods,
LigandOutput,
Output,
SiteTransforms,
SystemData,
XtalForms,
)

# from ligand neighbourhood_alignment
from ligand_neighbourhood_alignment import dt
Expand Down Expand Up @@ -73,7 +56,7 @@
_update,
)

from . import utils
from xchemalign.xchemalign import utils
from .utils import Constants
from .pdb_xtal import PDBXtal

Expand Down
5 changes: 3 additions & 2 deletions xchemalign/collator.py → xchemalign/xchemalign/collator.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@

from rdkit import Chem

from xchemalign import utils, dbreader
from xchemalign.utils import Constants
from xchemalign import dbreader
from xchemalign.xchemalign import utils
from xchemalign.xchemalign.utils import Constants


def generate_xtal_dir(input_path: Path, xtal_name: str):
Expand Down
3 changes: 2 additions & 1 deletion xchemalign/copier.py → xchemalign/xchemalign/copier.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@

import pandas as pd

from . import collator, dbreader, utils
from xchemalign import dbreader
from xchemalign.xchemalign import collator, utils
from .utils import Constants


Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from rdkit import Chem
from rdkit import Geometry

from . import utils
from xchemalign.xchemalign import utils


class PDBXtal:
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 52542f0

Please sign in to comment.