Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

trying to address issue with pull request #299, regarding conda and M… #300

Merged
merged 1 commit into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
# mamba-version: "*" # uncomment to activate mamba
python-version: ${{ matrix.python-version }}
miniforge-variant: Mambaforge
miniforge-variant: Miniforge3
channels: conda-forge,defaults
environment-file: devtools/conda-envs/mols.yml

Expand Down
10 changes: 5 additions & 5 deletions molSimplify/Informatics/autocorrelation.py
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ def find_ligand_autocorrelations_oct(mol, prop, loud, depth, name=False,
# # equatorial == equatorial)
# # octahedral complex
# # and returns autocorrelations for
# # the axial an equatorial ligands
# # the axial and equatorial ligands
# # custom_ligand_dict allows the user to skip the breakdown
# # in cases where 3D geo is not correct/formed
# # custom_ligand_dict.keys() must be eq_ligands_list, ax_ligand_list
Expand Down Expand Up @@ -832,7 +832,7 @@ def find_ligand_autocorrelation_derivatives_oct(mol, prop, loud, depth, name=Fal
# # equatorial == equatorial)
# # octahedral complex
# # and returns autocorrelations for
# # the axial an equatorial ligands
# # the axial and equatorial ligands
# # custom_ligand_dict allows the user to skip the breakdown
# # in cases where 3D geo is not correct/formed
# # custom_ligand_dict.keys() must be eq_ligands_list, ax_ligand_list
Expand Down Expand Up @@ -904,7 +904,7 @@ def find_ligand_autocorrs_and_deltametrics_oct_dimers(mol, prop, loud, depth, na
# # equatorial == equatorial)
# # octahedral complex
# # and returns autocorrelations for
# # the axial an equatorial ligands
# # the axial and equatorial ligands
# # custom_ligand_dict allows the user to skip the breakdown
# # in cases where 3D geo is not correct/formed
# # custom_ligand_dict.keys() must be eq_ligands_list, ax_ligand_list
Expand Down Expand Up @@ -978,7 +978,7 @@ def find_ligand_deltametrics_oct(mol, prop, loud, depth, name=False, oct=True, c
# # this function takes a
# # octahedral complex
# # and returns deltametrics for
# # the axial an equatorial ligands
# # the axial and equatorial ligands
if not custom_ligand_dict:
liglist, ligdents, ligcons = ligand_breakdown(mol, BondedOct=oct)
(ax_ligand_list, eq_ligand_list, ax_natoms_list, eq_natoms_list, ax_con_int_list,
Expand Down Expand Up @@ -1021,7 +1021,7 @@ def find_ligand_deltametric_derivatives_oct(mol, prop, loud, depth, name=False,
# # this function takes a
# # octahedral complex
# # and returns deltametrics for
# # the axial an equatorial ligands
# # the axial and equatorial ligands
if not custom_ligand_dict:
liglist, ligdents, ligcons = ligand_breakdown(mol, BondedOct=oct)
(ax_ligand_list, eq_ligand_list, ax_natoms_list, eq_natoms_list, ax_con_int_list,
Expand Down
Loading