@@ -10,7 +10,7 @@ We implemented a user-friendly terminal output message when the GUI encounters a
One student suggested adding a feature allowing users to add multiple molecules from a specified directory. We agreed with this suggestion as it would enhance convenience compared to adding molecules one file at a time. As a result, we introduced a new command/button that enables users to specify a folder, prompting the program to add all molecules within that folder to the database.
**Change 3:**
Multiple students noted that downloadPubChem was not working, which came as an oversight due to the Lab Computer’s default outdated version of Python (2.7.5). Since the function relies on a script that requires Python3, it did not run correctly without updating the Python version. This functionality is restored via the command $ module load anaconda/3, which loads Python 3.7.10. Additionally, this module comes with networkx installed, therefore removing the pip install requirement.
Multiple students noted that downloadPubChem was not working, which came as an oversight due to the Lab Computer’s default outdated version of Python (2.7.5). Since the function relies on a script that requires Python3, it did not run correctly without updating the Python version. This functionality is restored via the command $ `module load anaconda/3`, which loads Python 3.7.10. Additionally, this module comes with networkx installed, therefore removing the pip install requirement.
**Change 4**
One student suggested adding a delete feature to our database so that a user can remove duplicates or any other unwanted molecules. We agreed that this is an obvious feature that our database should have and as a result we implemented a delete button to our GUI and a delete function to the command line interface. A user needs to specify a file path to an unwanted molecule file and then will have the ability to remove that molecule from the database.
@@ -30,10 +30,10 @@ One comment mentioned that the `--makeManySimple` command takes too long to gene
We revised our INSTALL.txt and README.md to improve clarity and understanding.
**Change 1:**
After testing with an extensive variety of molecules, we identified that --findMolecule misrepresented two molecules as equal, so we improved the comparison logic to perform a more extensive search. The test cases labeled TestSame1.txt and TestSame2.txt have identical atoms, but the order of connection is different. Our database should detect this. This is currently an unimplemented feature under the branch “improve-isomorphism”.
After testing with an extensive variety of molecules, we identified that `--findMolecule` misrepresented two molecules as equal, so we improved the comparison logic to perform a more extensive search. The test cases labeled TestSame1.txt and TestSame2.txt have identical atoms, but the order of connection is different. Our database should detect this. This is currently an unimplemented feature under the branch “improve-isomorphism”.
**Change 2:**
We have incorporated GUI buttons for "Make Simple Molecules," "Make Complex Molecules," and "Add Proteins." These buttons enable users to execute the respective functionalities previously exclusive to the command line interface.
We have incorporated GUI buttons for `Make Simple Molecules`, `Make Complex Molecules`, and `Add Proteins`. These buttons enable users to execute the respective functionalities previously exclusive to the command line interface.
**Change 3:**
A dedicated branch, “23-database-partition”, is created for implementing a partitioned database. The purpose is to solve the out-of-memory error caused by adding a very large number of molecules and/or very complex molecules. It features partitioning by the ratio of Carbon and Hydrogen atoms to all atoms in the molecule, and keeping a number of partitions in the memory and swapping out old ones as needed.