Tutorial on the usage of micelle_whole tool =========================================== Here two examples on how to use the make_micelle_whole tool for different polymers will be illustrated. Before starting any analysis, load the neccesary modules for this class. .. code:: ipython3 from utils_mda import MDA_input #from pysoftk.pol_analysis.tools.utils_mda import MDA_input from utils_tools import * #from pysoftk.pol_analysis.tools.utils_tools import * from clustering import SCP #from pysoftk.pol_analysis.clustering import SCP from make_micelle_whole import micelle_whole #from pysoftk.pol_analysis.make_micelle_whole import micelle_whole import numpy as np import pandas as pd .. parsed-literal:: /home/raquellrdc/Desktop/PhD/mda_umap/lib/python3.10/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html from .autonotebook import tqdm as notebook_tqdm Obtain largest micelle ---------------------- Here we will show how to obtain the largest micelle from the resutls obtained from the SCP class. This is convenient if you want to perform the analysis in the largest aggregate of the simulation 1. Select your trajectory files, it is recommended to use a tpr file for the topology and xtc file for the trajectory. Note that any MDAnalysis supported file can be used here. .. code:: ipython3 topology='data/short_movie_cyclic.tpr' trajectory='data/short_movie_cyclic.xtc' 2. Import the clustering data from SCP function .. code:: ipython3 resids_total='data/pictures_tutorial/cyclic_scp_result.parquet' 3. Obtain the largest micelle from the clustering pandas dataframe .. code:: ipython3 largest_micelle_resids = micelle_whole(topology, trajectory).obtain_largest_micelle_resids(resids_total) 4. ‘largest_micelle_resids’ is a np.array with the resids of the molecules that belong to the same cluster of the steps of the trajectory where SCP was ran. .. code:: ipython3 largest_micelle_resids .. parsed-literal:: [array([ 1, 2, 3, 4, 6, 7, 8, 11, 12, 13, 14, 15, 17, 18, 19]), array([ 2, 4, 6, 7, 13, 14, 15, 17, 18, 19, 20]), array([ 2, 4, 6, 7, 13, 14, 15, 17, 18, 19, 20])] Note that you you do not neccesarily need to only work with the largest micelle. The SCP tool ouputs all micelles of the system in a pandas dataframe so that you can select at each time step which ever ones you prefer. For example if you want to to take the two smalles micelles of the system you could do it in the following way .. code:: ipython3 #load the dataframe df_results = 'data/pictures_tutorial/cyclic_scp_result.parquet' df = pd.read_parquet(df_results) # Define a function to find the two smallest micelles (so more than 1 polymer) def find_two_smallest_lists(lst): sorted_lists = sorted(lst, key=len) return sorted_lists[:2] # Apply the function to each row in the DataFrame df['smallest_lists'] = df['micelle_resids'].apply(find_two_smallest_lists) #the following column contains the resids of the two smallest aggregates at each time step! df['smallest_lists'] .. parsed-literal:: 0 [[16, 9, 10, 5], [1, 2, 3, 4, 6, 7, 8, 11, 12,... 1 [[1, 3, 12], [5, 8, 9, 10, 16]] 2 [[1, 3, 5, 8, 10, 12, 16], [2, 4, 6, 7, 13, 14... Name: smallest_lists, dtype: object Obtain the whole coordinates of a molecular structure ----------------------------------------------------- Now, let’s obtain the coordinates of the largest micelle made whole across the pbc 1. Let’s define the resname of the molecules that we want to make whole. More than one resname can be inputted. Note that it should be the resname of the molecules of the largest_micelle array. .. code:: ipython3 resname=['LIG'] 2. Also, define the start, step and step of frames that you want to run the analysis on. Note that they need to be the same as the ones you ran the SCP clustering on. .. code:: ipython3 start=0 stop=10001 step=1 3. Now, we are ready to obtain the whole coordinates of the micelle! .. code:: ipython3 atom_pos = micelle_whole(topology, trajectory).running_make_cluster_whole(resname, largest_micelle_resids, start, stop, step) .. parsed-literal:: 0%| | 0/3 [00:00