├── .gitignore ├── LICENSE ├── README.md ├── gan_language.py ├── language_helpers.py ├── predictor.py ├── seq ├── gene_expression.npy ├── predicted_promoters.fa ├── promoter.npy ├── seq_exp_94.txt └── sequence_data.txt ├── structure.png └── tflib ├── __init__.py ├── cifar10.py ├── inception_score.py ├── mnist.py ├── ops ├── __init__.py ├── batchnorm.py ├── cond_batchnorm.py ├── conv1d.py ├── conv2d.py ├── deconv2d.py ├── layernorm.py └── linear.py ├── plot.py ├── save_images.py └── small_imagenet.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/README.md -------------------------------------------------------------------------------- /gan_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/gan_language.py -------------------------------------------------------------------------------- /language_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/language_helpers.py -------------------------------------------------------------------------------- /predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/predictor.py -------------------------------------------------------------------------------- /seq/gene_expression.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/seq/gene_expression.npy -------------------------------------------------------------------------------- /seq/predicted_promoters.fa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/seq/predicted_promoters.fa -------------------------------------------------------------------------------- /seq/promoter.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/seq/promoter.npy -------------------------------------------------------------------------------- /seq/seq_exp_94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/seq/seq_exp_94.txt -------------------------------------------------------------------------------- /seq/sequence_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/seq/sequence_data.txt -------------------------------------------------------------------------------- /structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/structure.png -------------------------------------------------------------------------------- /tflib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/__init__.py -------------------------------------------------------------------------------- /tflib/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/cifar10.py -------------------------------------------------------------------------------- /tflib/inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/inception_score.py -------------------------------------------------------------------------------- /tflib/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/mnist.py -------------------------------------------------------------------------------- /tflib/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tflib/ops/batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/batchnorm.py -------------------------------------------------------------------------------- /tflib/ops/cond_batchnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/cond_batchnorm.py -------------------------------------------------------------------------------- /tflib/ops/conv1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/conv1d.py -------------------------------------------------------------------------------- /tflib/ops/conv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/conv2d.py -------------------------------------------------------------------------------- /tflib/ops/deconv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/deconv2d.py -------------------------------------------------------------------------------- /tflib/ops/layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/layernorm.py -------------------------------------------------------------------------------- /tflib/ops/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/ops/linear.py -------------------------------------------------------------------------------- /tflib/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/plot.py -------------------------------------------------------------------------------- /tflib/save_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/save_images.py -------------------------------------------------------------------------------- /tflib/small_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaochenW/Deep_promoter/HEAD/tflib/small_imagenet.py --------------------------------------------------------------------------------