Difference between revisions of "Co-op Documentation"

From WormBaseWiki
Jump to navigationJump to search
Line 1: Line 1:
 
==Current Tasks==
 
==Current Tasks==
Tasks to be completed.
+
'''Tasks to be completed'''
 
*Refining Interactions widget:
 
*Refining Interactions widget:
 
**Details:
 
**Details:
Line 12: Line 12:
 
**Progress:
 
**Progress:
 
***Pending consultation from curators. Teleconference: 11:30 am EST Wednesday, January 18th, 2012
 
***Pending consultation from curators. Teleconference: 11:30 am EST Wednesday, January 18th, 2012
Possible Tasks:
+
'''Possible Tasks:''' Additional tasks that require further investigation
Additional tasks that require further investigation.
 
 
*Loading/processing large amounts of data
 
*Loading/processing large amounts of data
 
**Details:
 
**Details:
 
***Likely approach will be to change the database used from ACeDB to NoSQL/CouchDB
 
***Likely approach will be to change the database used from ACeDB to NoSQL/CouchDB
 +
***[http://beta.wormbase.org/resources/laboratory/VC#1--10 Sample Issue]
 
**Progress:
 
**Progress:
 
***[https://github.com/aduong/ace2couch Ace2Couch Scripts] for migrating data
 
***[https://github.com/aduong/ace2couch Ace2Couch Scripts] for migrating data
 
***[https://github.com/aduong/AceCouch AceCouch Perl API]
 
***[https://github.com/aduong/AceCouch AceCouch Perl API]
 +
 
==Getting Started==
 
==Getting Started==
 +
 
===Members/Contacts===
 
===Members/Contacts===
*Abigail Cabunoc
+
*Abigail Cabunoc - abigail.cabunoc@oicr.on.ca
*Todd Harris
+
*Todd Harris - todd@wormbase.org
*Lincoln Stein
+
*Lincoln Stein - lincoln.stein@gmail.com
 
*Quang Trinh
 
*Quang Trinh
  
Line 39: Line 41:
 
*Group Meeting
 
*Group Meeting
 
**Fridays, 3:00PM
 
**Fridays, 3:00PM
 +
 
==Tools==
 
==Tools==
 
The following are some of the tools with which many major aspects of WormBase are developed.
 
The following are some of the tools with which many major aspects of WormBase are developed.
 +
 
===Perl===
 
===Perl===
There is significant documentation on getting started with Perl. One starting point is [http://perlmonks.org/?node=Tutorials PerlMonks]
+
There is significant documentation on getting started with Perl. One starting point is [http://perlmonks.org/?node=Tutorials PerlMonks].
 +
 
 
===Catalyst===
 
===Catalyst===
 
Catalyst is the web development framework used to develop WormBase. To get started, read
 
Catalyst is the web development framework used to develop WormBase. To get started, read
 
*The Definitive Guide to Catalyst (should be available on bookshelf)
 
*The Definitive Guide to Catalyst (should be available on bookshelf)
 
* [http://search.cpan.org/~hkclark/Catalyst-Manual-5.9002/lib/Catalyst/Manual/About.pod CPAN - About Catalyst]
 
* [http://search.cpan.org/~hkclark/Catalyst-Manual-5.9002/lib/Catalyst/Manual/About.pod CPAN - About Catalyst]
 +
 
===Git===
 
===Git===
 
Git is a version control system used for collaboration and backup in the development process.  
 
Git is a version control system used for collaboration and backup in the development process.  
Line 68: Line 74:
 
</code>
 
</code>
 
Note: pull is similar to using fetch + merge
 
Note: pull is similar to using fetch + merge
 +
 
===Other===
 
===Other===
 
Some other tools that you should be aware of but may not be required to know/interact with include:
 
Some other tools that you should be aware of but may not be required to know/interact with include:
Line 80: Line 87:
 
**This plugin is used in the Interactions widget on the Gene page ([WormBase dir]/root/templates/classes/gene/interactions.tt2)
 
**This plugin is used in the Interactions widget on the Gene page ([WormBase dir]/root/templates/classes/gene/interactions.tt2)
 
**Installed in [WormBase dir]/root/js/jquery/plugins/
 
**Installed in [WormBase dir]/root/js/jquery/plugins/
 +
 
==General Concepts==
 
==General Concepts==
 +
 
===Widget Data Loading===
 
===Widget Data Loading===
 
[[File:DataLoadingWidget1.png|200px|thumb|Widget Loading]]
 
[[File:DataLoadingWidget1.png|200px|thumb|Widget Loading]]
Line 89: Line 98:
 
#Retrieves data for corresponding fields from API methods (/lib/WormBase/API/Object/[Class].pm)
 
#Retrieves data for corresponding fields from API methods (/lib/WormBase/API/Object/[Class].pm)
 
#Sends data to the template to be used in rendering the widget (/root/templates/classes/[Class]/[Widget].tt2)
 
#Sends data to the template to be used in rendering the widget (/root/templates/classes/[Class]/[Widget].tt2)
 +
 
==Other Notes==
 
==Other Notes==
 
*[WormBase dir]/root/templates/config/main contains useful macros such as get_url that may be used in templates
 
*[WormBase dir]/root/templates/config/main contains useful macros such as get_url that may be used in templates

Revision as of 19:03, 17 January 2012

Current Tasks

Tasks to be completed

  • Refining Interactions widget:
    • Details:
      • If the number of interactions is too high, only show the minimal table (hide Cytoscape) and add "Show More" option(AJAX).
      • Otherwise, show all interactions(nearby interactions included) and Cytoscape plugin
    • Progress:
      • Looking into BLASTP field in Homology Widget on Protein page that uses similar mechanism
  • Gene page alterations
    • Details:
      • Make corrections to Gene page interface
    • Progress:
      • Pending consultation from curators. Teleconference: 11:30 am EST Wednesday, January 18th, 2012

Possible Tasks: Additional tasks that require further investigation

Getting Started

Members/Contacts

  • Abigail Cabunoc - abigail.cabunoc@oicr.on.ca
  • Todd Harris - todd@wormbase.org
  • Lincoln Stein - lincoln.stein@gmail.com
  • Quang Trinh

Meetings

  • WormBase OICR Developers Teleconference
    • Mondays, 3:00PM
    • Phone-in 1-800-747-5150 id: 6738514
  • WormBase OICR Developers Teleconference with Lincoln
    • Wednesdays, 4:00PM EST
    • Lincoln's office
  • WormBase International Groups Teleconference
    • Every other Thursday, 11:30AM
    • Lincoln's Office
  • Group Meeting
    • Fridays, 3:00PM

Tools

The following are some of the tools with which many major aspects of WormBase are developed.

Perl

There is significant documentation on getting started with Perl. One starting point is PerlMonks.

Catalyst

Catalyst is the web development framework used to develop WormBase. To get started, read

Git

Git is a version control system used for collaboration and backup in the development process.

Given that we have modified two files a.txt and b.txt but do not wish to keep the changes made to b.txt

git status
git checkout b.txt
git add a.txt
git commit -m “Added change1 and change2 to a.txt”
git push

If we have did not have the most recent version, then we will run into an issue when trying to push. In this case we can:

git fetch
git merge
git push

Note: pull is similar to using fetch + merge

Other

Some other tools that you should be aware of but may not be required to know/interact with include:

  • JavaScript
  • ACeDB
  • MySQL
  • Xapian
  • GFF
  • Cytoscape Web
    • Cytoscape Tutorial
    • Plugin generally used for pathway analysis
    • This plugin is used in the Interactions widget on the Gene page ([WormBase dir]/root/templates/classes/gene/interactions.tt2)
    • Installed in [WormBase dir]/root/js/jquery/plugins/

General Concepts

Widget Data Loading

Widget Loading

REST Controller:

  1. Catches internal url (/rest/widget/...)
  2. Determines the class and widget from the url
  3. From class and widget, determines which fields are required from the configuration file (wormbase.conf)
  4. Retrieves data for corresponding fields from API methods (/lib/WormBase/API/Object/[Class].pm)
  5. Sends data to the template to be used in rendering the widget (/root/templates/classes/[Class]/[Widget].tt2)

Other Notes

  • [WormBase dir]/root/templates/config/main contains useful macros such as get_url that may be used in templates