https://github.com/intermine/mineviewer
A Perl webapp for viewing data in InterMine datawarehouses
https://github.com/intermine/mineviewer
Last synced: 10 days ago
JSON representation
A Perl webapp for viewing data in InterMine datawarehouses
- Host: GitHub
- URL: https://github.com/intermine/mineviewer
- Owner: intermine
- Created: 2011-05-12T14:40:26.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-10-13T12:20:18.000Z (about 14 years ago)
- Last Synced: 2025-01-19T18:52:33.534Z (12 months ago)
- Language: JavaScript
- Homepage: www.intermine.org
- Size: 1.67 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Perl Demonstration Web-Application
==================================
This project represents a Perl based web-application
which provides a limited front-end to an InterMine
data-warehouse. It is intended to demonstrate the capacity to
access genomic data stored remotely at an externally
administered data-store, accessed through webservices,
and then integrate this data with locally stored user
curated comments.
Requirements
------------
* Perl
* SQLite (local data store)
* Dancer (web-framework)
* DBIx::Class (database ORM)
* Webservice::InterMine (webservice client)
Setting Up
----------
Install the Perl dependencies:
perl Build.PL
./Build install-deps
Set up the local database:
sqlite3 data/usercomments.db < data/schema.sql
Set up your config file - see "environments/gmoddemo.yml" for example.
Running
-------
perl bin/app.pl -e gmoddemo
This will start a webapp accessible at localhost:3000. Change the environment
flag to change the settings.