Skip to content

Commit

Permalink
Use list rather than set so search strings are reproducible.
Browse files Browse the repository at this point in the history
[closes #270]
  • Loading branch information
lohedges committed Apr 9, 2024
1 parent 9e54237 commit 692849e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions python/BioSimSpace/Sandpit/Exscientia/_SireWrappers/_utils.py
Expand Up @@ -22,8 +22,8 @@
Utilities.
"""

# A set of protein residues. Taken from MDAnalysis.
_prot_res = {
# A list of protein residues. Taken from MDAnalysis.
_prot_res = [
# CHARMM top_all27_prot_lipid.rtf
"ALA",
"ARG",
Expand Down Expand Up @@ -135,10 +135,10 @@
"CMET",
"CME",
"ASF",
}
]

# A set of nucleic acid residues. Taken from MDAnalysis.
_nucl_res = {
# A list of nucleic acid residues. Taken from MDAnalysis.
_nucl_res = [
"ADE",
"URA",
"CYT",
Expand Down Expand Up @@ -173,7 +173,7 @@
"RU3",
"RG3",
"RC3",
}
]

# A list of ion elements.
_ions = [
Expand Down
12 changes: 6 additions & 6 deletions python/BioSimSpace/_SireWrappers/_utils.py
Expand Up @@ -22,8 +22,8 @@
Utilities.
"""

# A set of protein residues. Taken from MDAnalysis.
_prot_res = {
# A list of protein residues. Taken from MDAnalysis.
_prot_res = [
# CHARMM top_all27_prot_lipid.rtf
"ALA",
"ARG",
Expand Down Expand Up @@ -135,10 +135,10 @@
"CMET",
"CME",
"ASF",
}
]

# A set of nucleic acid residues. Taken from MDAnalysis.
_nucl_res = {
# A list of nucleic acid residues. Taken from MDAnalysis.
_nucl_res = [
"ADE",
"URA",
"CYT",
Expand Down Expand Up @@ -173,7 +173,7 @@
"RU3",
"RG3",
"RC3",
}
]

# A list of ion elements.
_ions = [
Expand Down

0 comments on commit 692849e

Please sign in to comment.