├── LICENSE ├── README.md ├── clus.py ├── config.py ├── data.py ├── dataset └── ncbi_mgi_ensembl__mouse-lemur_human_mouse__orthologs__gene_names__one2one.csv ├── fig.py ├── figs ├── model.jpg ├── pytorch-logo-dark.png ├── sample1.jpeg └── sample2.jpeg ├── finetune.py ├── main.py ├── metrics.py ├── model.py ├── pretrain.py ├── requirements.txt ├── rf_svm_lr.py └── sil.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/README.md -------------------------------------------------------------------------------- /clus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/clus.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/config.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/data.py -------------------------------------------------------------------------------- /dataset/ncbi_mgi_ensembl__mouse-lemur_human_mouse__orthologs__gene_names__one2one.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/dataset/ncbi_mgi_ensembl__mouse-lemur_human_mouse__orthologs__gene_names__one2one.csv -------------------------------------------------------------------------------- /fig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/fig.py -------------------------------------------------------------------------------- /figs/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/figs/model.jpg -------------------------------------------------------------------------------- /figs/pytorch-logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/figs/pytorch-logo-dark.png -------------------------------------------------------------------------------- /figs/sample1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/figs/sample1.jpeg -------------------------------------------------------------------------------- /figs/sample2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/figs/sample2.jpeg -------------------------------------------------------------------------------- /finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/finetune.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/main.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/metrics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/model.py -------------------------------------------------------------------------------- /pretrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/pretrain.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/requirements.txt -------------------------------------------------------------------------------- /rf_svm_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/rf_svm_lr.py -------------------------------------------------------------------------------- /sil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruiyi-zhang/scPretrain/HEAD/sil.py --------------------------------------------------------------------------------