├── .gitignore ├── README.md ├── args.py ├── data ├── melanocortin_receptor_4_mmps.csv ├── mu_opioid_receptor_mmps.csv └── thrombin_mmps.csv ├── main.py ├── model ├── acgcn_mmp.py └── acgcn_sub.py ├── requirements.txt └── utils ├── GCNPredictor.py ├── data_loader.py ├── model_utils.py ├── train.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/README.md -------------------------------------------------------------------------------- /args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/args.py -------------------------------------------------------------------------------- /data/melanocortin_receptor_4_mmps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/data/melanocortin_receptor_4_mmps.csv -------------------------------------------------------------------------------- /data/mu_opioid_receptor_mmps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/data/mu_opioid_receptor_mmps.csv -------------------------------------------------------------------------------- /data/thrombin_mmps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/data/thrombin_mmps.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/main.py -------------------------------------------------------------------------------- /model/acgcn_mmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/model/acgcn_mmp.py -------------------------------------------------------------------------------- /model/acgcn_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/model/acgcn_sub.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/GCNPredictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/utils/GCNPredictor.py -------------------------------------------------------------------------------- /utils/data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/utils/data_loader.py -------------------------------------------------------------------------------- /utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/utils/model_utils.py -------------------------------------------------------------------------------- /utils/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/utils/train.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chunkyun/ACGCN/HEAD/utils/util.py --------------------------------------------------------------------------------