Skip to content

Commit

Permalink
sys path
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulkhorana committed Mar 25, 2024
1 parent 24339be commit 6fec177
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/complexes/atomic_complex.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import sys
import jax
import numpy as np
from typing import List, Tuple

sys.path.append(".")
from src.complexes.building_blocks import Electron, Proton, Neutron
from src.complexes.general_utils import GeneralComplexUtils

Expand Down
3 changes: 3 additions & 0 deletions src/complexes/build_atom_lookup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import os
import sys
import json
import dill
import numpy as np
from collections import defaultdict

sys.path.append(".")
from src.complexes.atomic_complex import AtomComplex


Expand Down
3 changes: 3 additions & 0 deletions src/complexes/polyatomic_complex.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import os
import sys
import dill
import json
import numpy as np
import jax.numpy as jnp
from typing import List, Tuple

sys.path.append(".")
from src.complexes.core_utils import GluingMap, ElectronField
from src.complexes.building_blocks import Electron

Expand Down
3 changes: 3 additions & 0 deletions src/complexes/process_esol.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import os
import re
import sys
import dill
import pandas as pd
from rdkit import Chem
from collections import defaultdict

sys.path.append(".")
from src.complexes.polyatomic_complex import PolyAtomComplex


Expand Down
3 changes: 3 additions & 0 deletions src/complexes/process_freesolv.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import os
import re
import sys
import dill
import pandas as pd
from rdkit import Chem
from collections import defaultdict

sys.path.append(".")
from src.complexes.polyatomic_complex import PolyAtomComplex


Expand Down
3 changes: 3 additions & 0 deletions src/complexes/process_lipophilicity.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import os
import re
import sys
import dill
import pandas as pd
from rdkit import Chem
from collections import defaultdict

sys.path.append(".")
from src.complexes.polyatomic_complex import PolyAtomComplex


Expand Down
3 changes: 3 additions & 0 deletions src/complexes/process_materials_project.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import os
import sys
import dill
import json
import pandas as pd
from typing import List
from multiprocessing.pool import ThreadPool as Pool
from collections import defaultdict

sys.path.append(".")
from src.complexes.polyatomic_complex import PolyAtomComplex


Expand Down
3 changes: 3 additions & 0 deletions src/complexes/process_photoswitches.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import os
import re
import sys
import dill
import pandas as pd
from rdkit import Chem
from collections import defaultdict

sys.path.append(".")
from src.complexes.polyatomic_complex import PolyAtomComplex


Expand Down

0 comments on commit 6fec177

Please sign in to comment.