├── .gitignore ├── LICENSE ├── README.md ├── induction ├── ind.py ├── load_data.py ├── model.py └── train.py ├── notebooks └── h5ad2graphpkl.ipynb └── transduction ├── load_data.py ├── model.py ├── train.py └── trans.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/README.md -------------------------------------------------------------------------------- /induction/ind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/induction/ind.py -------------------------------------------------------------------------------- /induction/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/induction/load_data.py -------------------------------------------------------------------------------- /induction/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/induction/model.py -------------------------------------------------------------------------------- /induction/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/induction/train.py -------------------------------------------------------------------------------- /notebooks/h5ad2graphpkl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/notebooks/h5ad2graphpkl.ipynb -------------------------------------------------------------------------------- /transduction/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/transduction/load_data.py -------------------------------------------------------------------------------- /transduction/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/transduction/model.py -------------------------------------------------------------------------------- /transduction/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/transduction/train.py -------------------------------------------------------------------------------- /transduction/trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vandijklab/scGAT/HEAD/transduction/trans.py --------------------------------------------------------------------------------