├── DeepSoluE-master_source_code ├── DeepSoluE.py ├── data │ ├── 14_hc.txt │ ├── 38_hj.txt │ ├── 43_hh.txt │ ├── AAidx.csv │ ├── AAidx.txt │ ├── AAindex.txt │ ├── CTD.txt │ ├── Grantham.txt │ ├── PAAC.txt │ ├── Schneider-Wrede.txt │ └── blosum62.txt ├── feature_scripts │ ├── AAC.py │ ├── APAAC.py │ ├── Biofea.py │ ├── CTDC.py │ ├── DPC.py │ ├── Grantham.txt │ ├── PAAC.txt │ ├── QSOrder.py │ ├── Schneider-Wrede.txt │ ├── __init__.py │ ├── __pycache__ │ │ ├── AAC.cpython-37.pyc │ │ ├── APAAC.cpython-37.pyc │ │ ├── Biofea.cpython-37.pyc │ │ ├── CTDC.cpython-37.pyc │ │ ├── DPC.cpython-37.pyc │ │ ├── QSOrder.cpython-37.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── checkFasta.cpython-37.pyc │ │ ├── feature_combine.cpython-37.pyc │ │ ├── predict.cpython-37.pyc │ │ ├── readFasta.cpython-37.pyc │ │ ├── saveCode.cpython-37.pyc │ │ ├── sequence_read_save.cpython-37.pyc │ │ ├── tmhmm_usearch.cpython-37.pyc │ │ └── w2v_kmer_corpus_feature.cpython-37.pyc │ ├── checkFasta.py │ ├── data │ │ ├── 14_hc.txt │ │ ├── 38_hj.txt │ │ ├── 43_hh.txt │ │ ├── AAidx.csv │ │ ├── AAidx.txt │ │ ├── AAindex.txt │ │ ├── CTD.txt │ │ ├── Grantham.txt │ │ ├── PAAC.txt │ │ ├── Schneider-Wrede.txt │ │ └── blosum62.txt │ ├── feature_combine.py │ ├── predict.py │ ├── readFasta.py │ ├── saveCode.py │ ├── sequence_read_save.py │ ├── tmhmm_usearch.py │ └── w2v_kmer_corpus_feature.py ├── features │ ├── biofea │ │ └── biofeatures.txt │ └── features.txt ├── model │ ├── genetic_algorithm_100_features.csv │ ├── scaler.gz │ ├── tf_model │ │ ├── model_1.hdf5 │ │ ├── model_10.hdf5 │ │ ├── model_2.hdf5 │ │ ├── model_3.hdf5 │ │ ├── model_4.hdf5 │ │ ├── model_5.hdf5 │ │ ├── model_6.hdf5 │ │ ├── model_7.hdf5 │ │ ├── model_8.hdf5 │ │ └── model_9.hdf5 │ └── w2v │ │ └── training_k3w2_shffule.model ├── readme.docx ├── results │ └── result.csv └── sequence │ ├── testing.fasta │ └── testing_min.fasta ├── Ecoli_xray_nmr_pdb_no_nesg_simple_id.fasta ├── README.md └── training_testing_datasets.rar /DeepSoluE-master_source_code/DeepSoluE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/DeepSoluE.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/14_hc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/14_hc.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/38_hj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/38_hj.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/43_hh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/43_hh.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/AAidx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/AAidx.csv -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/AAidx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/AAidx.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/AAindex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/AAindex.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/CTD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/CTD.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/Grantham.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/Grantham.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/PAAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/PAAC.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/Schneider-Wrede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/Schneider-Wrede.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/data/blosum62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/data/blosum62.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/AAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/AAC.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/APAAC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/APAAC.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/Biofea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/Biofea.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/CTDC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/CTDC.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/DPC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/DPC.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/Grantham.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/Grantham.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/PAAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/PAAC.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/QSOrder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/QSOrder.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/Schneider-Wrede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/Schneider-Wrede.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__init__.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/AAC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/AAC.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/APAAC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/APAAC.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/Biofea.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/Biofea.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/CTDC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/CTDC.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/DPC.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/DPC.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/QSOrder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/QSOrder.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/checkFasta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/checkFasta.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/feature_combine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/feature_combine.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/predict.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/predict.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/readFasta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/readFasta.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/saveCode.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/saveCode.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/sequence_read_save.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/sequence_read_save.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/tmhmm_usearch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/tmhmm_usearch.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/__pycache__/w2v_kmer_corpus_feature.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/__pycache__/w2v_kmer_corpus_feature.cpython-37.pyc -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/checkFasta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/checkFasta.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/14_hc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/14_hc.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/38_hj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/38_hj.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/43_hh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/43_hh.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/AAidx.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/AAidx.csv -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/AAidx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/AAidx.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/AAindex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/AAindex.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/CTD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/CTD.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/Grantham.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/Grantham.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/PAAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/PAAC.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/Schneider-Wrede.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/Schneider-Wrede.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/data/blosum62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/data/blosum62.txt -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/feature_combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/feature_combine.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/predict.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/readFasta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/readFasta.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/saveCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/saveCode.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/sequence_read_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/sequence_read_save.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/tmhmm_usearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/tmhmm_usearch.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/feature_scripts/w2v_kmer_corpus_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/feature_scripts/w2v_kmer_corpus_feature.py -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/features/biofea/biofeatures.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/features/features.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/genetic_algorithm_100_features.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/genetic_algorithm_100_features.csv -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/scaler.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/scaler.gz -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_1.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_1.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_10.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_10.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_2.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_2.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_3.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_3.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_4.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_4.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_5.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_5.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_6.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_6.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_7.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_7.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_8.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_8.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/tf_model/model_9.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/tf_model/model_9.hdf5 -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/model/w2v/training_k3w2_shffule.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/model/w2v/training_k3w2_shffule.model -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/readme.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/readme.docx -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/results/result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/results/result.csv -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/sequence/testing.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/sequence/testing.fasta -------------------------------------------------------------------------------- /DeepSoluE-master_source_code/sequence/testing_min.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/DeepSoluE-master_source_code/sequence/testing_min.fasta -------------------------------------------------------------------------------- /Ecoli_xray_nmr_pdb_no_nesg_simple_id.fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/Ecoli_xray_nmr_pdb_no_nesg_simple_id.fasta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/README.md -------------------------------------------------------------------------------- /training_testing_datasets.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangchao-malab/DeepSoluE/HEAD/training_testing_datasets.rar --------------------------------------------------------------------------------