├── .gitignore ├── README.md ├── data ├── DUDE │ └── DUDE-contactDict ├── bindingDB │ └── IBM_BindingDBuniprotPdb └── human │ └── humanSeqPdb ├── environment.yaml ├── image └── Fig.1.jpg └── model ├── TPN.py ├── data.py ├── dataTest.py ├── interCmpnn.py ├── interformer.py ├── main.py ├── mainTest.py ├── modelUtils.py ├── modelUtilsTest.py └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/README.md -------------------------------------------------------------------------------- /data/DUDE/DUDE-contactDict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/data/DUDE/DUDE-contactDict -------------------------------------------------------------------------------- /data/bindingDB/IBM_BindingDBuniprotPdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/data/bindingDB/IBM_BindingDBuniprotPdb -------------------------------------------------------------------------------- /data/human/humanSeqPdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/data/human/humanSeqPdb -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/environment.yaml -------------------------------------------------------------------------------- /image/Fig.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/image/Fig.1.jpg -------------------------------------------------------------------------------- /model/TPN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/TPN.py -------------------------------------------------------------------------------- /model/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/data.py -------------------------------------------------------------------------------- /model/dataTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/dataTest.py -------------------------------------------------------------------------------- /model/interCmpnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/interCmpnn.py -------------------------------------------------------------------------------- /model/interformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/interformer.py -------------------------------------------------------------------------------- /model/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/main.py -------------------------------------------------------------------------------- /model/mainTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/mainTest.py -------------------------------------------------------------------------------- /model/modelUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/modelUtils.py -------------------------------------------------------------------------------- /model/modelUtilsTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/modelUtilsTest.py -------------------------------------------------------------------------------- /model/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admislf/MINN-DTI/HEAD/model/tools.py --------------------------------------------------------------------------------