Tutorial on the usage of contacts ================================= This tutorial will show how to use the contacts class to compute the intermolecular contacts between polymers that belong to the largest micelle of the system. 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 from contact_analysis import contacts #from pysoftk.pol_analysis.contact_analysis import contactsn 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 1. First load the trajectory, we are going to use the cyclic topology used in previous tutorials. .. code:: ipython3 topology='data/short_movie_cyclic.tpr' trajectory='data/short_movie_cyclic.xtc' 2. Import the clustering data from SCP function, to obtain the resids of the polymers of each micelle .. 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. Now, obtain the positions of the whole micelle .. code:: ipython3 #select the resname of the polymers resname=['LIG'] #run to obtain the whole positions start=0 stop=10001 step=1 #run micelle_whole atom_pos = micelle_whole(topology, trajectory).running_make_cluster_whole(resname, largest_micelle_resids, start, stop, step) .. parsed-literal:: 0%| | 0/3 [00:00