├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .yo-rc.json ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── ReadMe-Neo4j.md ├── deploy ├── Dockerfile └── nginx-default.conf ├── karma.conf.js ├── media └── screenshot.png ├── package.json ├── phovea.js ├── phovea_registry.js ├── src ├── 404.html ├── app.js ├── assets │ └── caleydo_text_right.svg ├── colors.js ├── config.js ├── datastore.js ├── dump │ ├── ACAA1-C00350.json │ ├── braf-sos1.json │ ├── egfr-ptk2-sos1.json │ ├── egfr-sos1.json │ ├── partl-shneiderman.json │ ├── testpaths.json │ ├── testpaths1.json │ ├── testpaths2.json │ ├── testpaths3.json │ └── testpaths4.json ├── extradata.js ├── hierarchyelements.js ├── index.html ├── index.js ├── keggrest.js ├── landing.js ├── landingcontent.html ├── lib │ ├── LICENSE │ └── colorbrewer.js ├── list │ ├── aggregation │ │ ├── aggregate.js │ │ ├── aggregatesorting.js │ │ ├── noaggregationlist.js │ │ ├── nodetypecombinations.js │ │ └── setcombinations.js │ ├── listview.js │ ├── path │ │ ├── column.js │ │ ├── datasetrenderer.js │ │ ├── pathdata.js │ │ ├── pathlist.js │ │ └── settings.js │ ├── pathsorting.js │ ├── progressbar.js │ └── view.html ├── listeners.js ├── listoverlay.js ├── main.html ├── pathgraph │ ├── forcelayout.js │ ├── layeredlayout.js │ ├── neighboredge.js │ └── pathgraph.js ├── pathstats │ ├── pathstatsview.js │ └── statdata.js ├── pathutil.js ├── query │ ├── pathquery.js │ ├── querymodel.js │ ├── queryutil.js │ ├── queryview.js │ └── view.html ├── ranking │ └── rankconfigview.js ├── robots.txt ├── selectionutil.js ├── setinfo.js ├── settings │ └── visibilitysettings.js ├── sorting.js ├── statisticsutil.js ├── style.scss ├── uiutil.js └── view.js ├── tests.webpack.js ├── tsconfig.json ├── tsd.d.ts ├── tslint.json ├── typedoc.json └── webpack.config.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe-Neo4j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/ReadMe-Neo4j.md -------------------------------------------------------------------------------- /deploy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/deploy/Dockerfile -------------------------------------------------------------------------------- /deploy/nginx-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/deploy/nginx-default.conf -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/karma.conf.js -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/package.json -------------------------------------------------------------------------------- /phovea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/phovea.js -------------------------------------------------------------------------------- /phovea_registry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/phovea_registry.js -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/404.html -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/app.js -------------------------------------------------------------------------------- /src/assets/caleydo_text_right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/assets/caleydo_text_right.svg -------------------------------------------------------------------------------- /src/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/colors.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/config.js -------------------------------------------------------------------------------- /src/datastore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/datastore.js -------------------------------------------------------------------------------- /src/dump/ACAA1-C00350.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/ACAA1-C00350.json -------------------------------------------------------------------------------- /src/dump/braf-sos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/braf-sos1.json -------------------------------------------------------------------------------- /src/dump/egfr-ptk2-sos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/egfr-ptk2-sos1.json -------------------------------------------------------------------------------- /src/dump/egfr-sos1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/egfr-sos1.json -------------------------------------------------------------------------------- /src/dump/partl-shneiderman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/partl-shneiderman.json -------------------------------------------------------------------------------- /src/dump/testpaths.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/testpaths.json -------------------------------------------------------------------------------- /src/dump/testpaths1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/testpaths1.json -------------------------------------------------------------------------------- /src/dump/testpaths2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/testpaths2.json -------------------------------------------------------------------------------- /src/dump/testpaths3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/testpaths3.json -------------------------------------------------------------------------------- /src/dump/testpaths4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/dump/testpaths4.json -------------------------------------------------------------------------------- /src/extradata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/extradata.js -------------------------------------------------------------------------------- /src/hierarchyelements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/hierarchyelements.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/index.js -------------------------------------------------------------------------------- /src/keggrest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/keggrest.js -------------------------------------------------------------------------------- /src/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/landing.js -------------------------------------------------------------------------------- /src/landingcontent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/landingcontent.html -------------------------------------------------------------------------------- /src/lib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/lib/LICENSE -------------------------------------------------------------------------------- /src/lib/colorbrewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/lib/colorbrewer.js -------------------------------------------------------------------------------- /src/list/aggregation/aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/aggregation/aggregate.js -------------------------------------------------------------------------------- /src/list/aggregation/aggregatesorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/aggregation/aggregatesorting.js -------------------------------------------------------------------------------- /src/list/aggregation/noaggregationlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/aggregation/noaggregationlist.js -------------------------------------------------------------------------------- /src/list/aggregation/nodetypecombinations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/aggregation/nodetypecombinations.js -------------------------------------------------------------------------------- /src/list/aggregation/setcombinations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/aggregation/setcombinations.js -------------------------------------------------------------------------------- /src/list/listview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/listview.js -------------------------------------------------------------------------------- /src/list/path/column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/path/column.js -------------------------------------------------------------------------------- /src/list/path/datasetrenderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/path/datasetrenderer.js -------------------------------------------------------------------------------- /src/list/path/pathdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/path/pathdata.js -------------------------------------------------------------------------------- /src/list/path/pathlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/path/pathlist.js -------------------------------------------------------------------------------- /src/list/path/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/path/settings.js -------------------------------------------------------------------------------- /src/list/pathsorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/pathsorting.js -------------------------------------------------------------------------------- /src/list/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/progressbar.js -------------------------------------------------------------------------------- /src/list/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/list/view.html -------------------------------------------------------------------------------- /src/listeners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/listeners.js -------------------------------------------------------------------------------- /src/listoverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/listoverlay.js -------------------------------------------------------------------------------- /src/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/main.html -------------------------------------------------------------------------------- /src/pathgraph/forcelayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathgraph/forcelayout.js -------------------------------------------------------------------------------- /src/pathgraph/layeredlayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathgraph/layeredlayout.js -------------------------------------------------------------------------------- /src/pathgraph/neighboredge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathgraph/neighboredge.js -------------------------------------------------------------------------------- /src/pathgraph/pathgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathgraph/pathgraph.js -------------------------------------------------------------------------------- /src/pathstats/pathstatsview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathstats/pathstatsview.js -------------------------------------------------------------------------------- /src/pathstats/statdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathstats/statdata.js -------------------------------------------------------------------------------- /src/pathutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/pathutil.js -------------------------------------------------------------------------------- /src/query/pathquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/query/pathquery.js -------------------------------------------------------------------------------- /src/query/querymodel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/query/querymodel.js -------------------------------------------------------------------------------- /src/query/queryutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/query/queryutil.js -------------------------------------------------------------------------------- /src/query/queryview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/query/queryview.js -------------------------------------------------------------------------------- /src/query/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/query/view.html -------------------------------------------------------------------------------- /src/ranking/rankconfigview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/ranking/rankconfigview.js -------------------------------------------------------------------------------- /src/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/selectionutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/selectionutil.js -------------------------------------------------------------------------------- /src/setinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/setinfo.js -------------------------------------------------------------------------------- /src/settings/visibilitysettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/settings/visibilitysettings.js -------------------------------------------------------------------------------- /src/sorting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/sorting.js -------------------------------------------------------------------------------- /src/statisticsutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/statisticsutil.js -------------------------------------------------------------------------------- /src/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/style.scss -------------------------------------------------------------------------------- /src/uiutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/uiutil.js -------------------------------------------------------------------------------- /src/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/src/view.js -------------------------------------------------------------------------------- /tests.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/tests.webpack.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/tsd.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/typedoc.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Caleydo/pathfinder/HEAD/webpack.config.js --------------------------------------------------------------------------------