├── .gitignore ├── LICENCE ├── README.md ├── data ├── psipred │ ├── weights.dat │ ├── weights.dat2 │ ├── weights.dat3 │ ├── weights_p2.dat │ ├── weights_s.dat │ ├── weights_s.dat2 │ └── weights_s.dat3 ├── psipred4 │ ├── weights.dat │ ├── weights.dat2 │ ├── weights.dat3 │ ├── weights_p2.dat │ ├── weights_s.dat │ ├── weights_s.dat2 │ ├── weights_s.dat3 │ └── weights_solv.dat └── weights_solv.dat ├── deepmetapsicov_consens ├── DMP_model1.pt ├── DMP_model2.pt ├── DMP_model3.pt ├── DMP_model4.pt ├── DMP_model5.pt ├── legacy │ ├── nndef_meta_resnet.py │ └── pytorch_metacov_pred.py ├── nndef_meta_resnet.py └── pytorch_metacov_consenspred_030model.py ├── run_DMP.sh ├── src ├── Makefile ├── Makefile~ ├── alnstats.c ├── cov21stats.c ├── deepmetapsicov_makepredmap.c ├── nndefs.h ├── psicov25.c ├── solvation_net.h ├── solvpred_avpred.c ├── ssdefs.h ├── sspred_avpred.c ├── sspred_hmulti.c ├── sspred_net.h └── sspred_net2.h ├── test ├── 1guuA.aln ├── 1guuA.fasta ├── 1guuA.mtx ├── example_con │ └── 1guuA.deepmetapsicov.con └── testDMP.sh └── web ├── ContactMapFunctions.R ├── ContactMapFunctions.Rout ├── Makefile ├── README ├── create_aln.sh ├── plotmap ├── plotmap.cpp └── run_contact_predictors.py /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | deepmetapsicov_consens/__pycache__ 3 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/README.md -------------------------------------------------------------------------------- /data/psipred/weights.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights.dat -------------------------------------------------------------------------------- /data/psipred/weights.dat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights.dat2 -------------------------------------------------------------------------------- /data/psipred/weights.dat3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights.dat3 -------------------------------------------------------------------------------- /data/psipred/weights_p2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights_p2.dat -------------------------------------------------------------------------------- /data/psipred/weights_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights_s.dat -------------------------------------------------------------------------------- /data/psipred/weights_s.dat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights_s.dat2 -------------------------------------------------------------------------------- /data/psipred/weights_s.dat3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred/weights_s.dat3 -------------------------------------------------------------------------------- /data/psipred4/weights.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights.dat -------------------------------------------------------------------------------- /data/psipred4/weights.dat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights.dat2 -------------------------------------------------------------------------------- /data/psipred4/weights.dat3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights.dat3 -------------------------------------------------------------------------------- /data/psipred4/weights_p2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights_p2.dat -------------------------------------------------------------------------------- /data/psipred4/weights_s.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights_s.dat -------------------------------------------------------------------------------- /data/psipred4/weights_s.dat2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights_s.dat2 -------------------------------------------------------------------------------- /data/psipred4/weights_s.dat3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights_s.dat3 -------------------------------------------------------------------------------- /data/psipred4/weights_solv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/psipred4/weights_solv.dat -------------------------------------------------------------------------------- /data/weights_solv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/data/weights_solv.dat -------------------------------------------------------------------------------- /deepmetapsicov_consens/DMP_model1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/DMP_model1.pt -------------------------------------------------------------------------------- /deepmetapsicov_consens/DMP_model2.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/DMP_model2.pt -------------------------------------------------------------------------------- /deepmetapsicov_consens/DMP_model3.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/DMP_model3.pt -------------------------------------------------------------------------------- /deepmetapsicov_consens/DMP_model4.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/DMP_model4.pt -------------------------------------------------------------------------------- /deepmetapsicov_consens/DMP_model5.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/DMP_model5.pt -------------------------------------------------------------------------------- /deepmetapsicov_consens/legacy/nndef_meta_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/legacy/nndef_meta_resnet.py -------------------------------------------------------------------------------- /deepmetapsicov_consens/legacy/pytorch_metacov_pred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/legacy/pytorch_metacov_pred.py -------------------------------------------------------------------------------- /deepmetapsicov_consens/nndef_meta_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/nndef_meta_resnet.py -------------------------------------------------------------------------------- /deepmetapsicov_consens/pytorch_metacov_consenspred_030model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/deepmetapsicov_consens/pytorch_metacov_consenspred_030model.py -------------------------------------------------------------------------------- /run_DMP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/run_DMP.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/Makefile~ -------------------------------------------------------------------------------- /src/alnstats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/alnstats.c -------------------------------------------------------------------------------- /src/cov21stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/cov21stats.c -------------------------------------------------------------------------------- /src/deepmetapsicov_makepredmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/deepmetapsicov_makepredmap.c -------------------------------------------------------------------------------- /src/nndefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/nndefs.h -------------------------------------------------------------------------------- /src/psicov25.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/psicov25.c -------------------------------------------------------------------------------- /src/solvation_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/solvation_net.h -------------------------------------------------------------------------------- /src/solvpred_avpred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/solvpred_avpred.c -------------------------------------------------------------------------------- /src/ssdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/ssdefs.h -------------------------------------------------------------------------------- /src/sspred_avpred.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/sspred_avpred.c -------------------------------------------------------------------------------- /src/sspred_hmulti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/sspred_hmulti.c -------------------------------------------------------------------------------- /src/sspred_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/sspred_net.h -------------------------------------------------------------------------------- /src/sspred_net2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/src/sspred_net2.h -------------------------------------------------------------------------------- /test/1guuA.aln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/test/1guuA.aln -------------------------------------------------------------------------------- /test/1guuA.fasta: -------------------------------------------------------------------------------- 1 | >1guuA 2 | KTRWTREEDEKLKKLVEQNGTDDWKVIANYLPNRTDVQCQHRWQKVLNPE 3 | -------------------------------------------------------------------------------- /test/1guuA.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/test/1guuA.mtx -------------------------------------------------------------------------------- /test/example_con/1guuA.deepmetapsicov.con: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/test/example_con/1guuA.deepmetapsicov.con -------------------------------------------------------------------------------- /test/testDMP.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/test/testDMP.sh -------------------------------------------------------------------------------- /web/ContactMapFunctions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/ContactMapFunctions.R -------------------------------------------------------------------------------- /web/ContactMapFunctions.Rout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/ContactMapFunctions.Rout -------------------------------------------------------------------------------- /web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/Makefile -------------------------------------------------------------------------------- /web/README: -------------------------------------------------------------------------------- 1 | Components needed for PSIPRED Workbench online 2 | -------------------------------------------------------------------------------- /web/create_aln.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | egrep -v '^>' $1 | sed 's/[a-z]//g' > $2 3 | -------------------------------------------------------------------------------- /web/plotmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/plotmap -------------------------------------------------------------------------------- /web/plotmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/plotmap.cpp -------------------------------------------------------------------------------- /web/run_contact_predictors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psipred/DeepMetaPSICOV/HEAD/web/run_contact_predictors.py --------------------------------------------------------------------------------