Ejemplo n.º 1
0
        /// <summary>
        /// retrieve interfaces from the list of pdb entries,
        /// and save the data into db
        /// </summary>
        /// <param name="pdbList"></param>
        public void ComputeEntryCrystInterfaces(string[] pdbList)
        {
            Initialize();
            CrystInterfaceRetriever crystInterfaceRetriever = new CrystInterfaceRetriever();

            crystInterfaceRetriever.FindUniqueInterfaces(pdbList);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// retrieve interfaces from the list of pdb entries
        /// </summary>
        /// <param name="pdbList"></param>
        public void ComputeNmrEntryCrystInterfaces(string[] pdbList)
        {
            Initialize();
            CrystInterfaceRetriever crystInterfaceRetriever = new CrystInterfaceRetriever();

            crystInterfaceRetriever.GetNmrEntryInterfaces(pdbList);
        }