├── .gitignore ├── README.md ├── app.py ├── requirements.txt ├── static ├── css │ └── style.css └── js │ ├── code.js │ ├── cytoscape.min.js │ └── jquery-1.11.2.min.js └── templates └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/app.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | py2neo 3 | -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/js/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/static/js/code.js -------------------------------------------------------------------------------- /static/js/cytoscape.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/static/js/cytoscape.min.js -------------------------------------------------------------------------------- /static/js/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/static/js/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhongzhu/cytoscape_neo4j/HEAD/templates/index.html --------------------------------------------------------------------------------