Details
-
Type:
Task
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Story Points:1
-
Epic Link:
-
Sprint:Fall 2018 Sprint 5
Description
Find out how CytoScape App Store is displaying categories shown on the left-hand side of the Web site. Are these pre-determined categories, developer-supplied categories, or something else?
Attachments
Activity
| Field | Original Value | New Value |
|---|---|---|
| Epic Link | IGBF-1388 [ 17463 ] |
| Rank | Ranked higher |
| Assignee | Ann Loraine [ aloraine ] |
| Summary | Investigate how Categories data are derived in Cytoscape. | Investigate how categories data are derived in Cytoscape |
| Story Points | 1 |
| Description | Find out how CytoScape App Store is displaying categories shown on the left-hand side of the Web site. Are these pre-determined categories, developer-supplied categories, or something else? |
| Sprint | Fall 2018 Sprint 5 [ 55 ] |
| Rank | Ranked higher |
| Status | Open [ 1 ] | In Progress [ 3 ] |
| Assignee | Sneha Ramesh Watharkar [ jdaly ] |
| Assignee | Sneha Ramesh Watharkar [ jdaly ] | Pranav Sanjay Tambvekar [ ptambvek ] |
| Assignee | Pranav Sanjay Tambvekar [ ptambvek ] | Sneha Ramesh Watharkar [ jdaly ] |
| Assignee | Sneha Ramesh Watharkar [ jdaly ] |
| Status | In Progress [ 3 ] | Needs 1st Level Review [ 10005 ] |
| Assignee | Sneha Ramesh Watharkar [ jdaly ] |
| Resolution | Done [ 10000 ] | |
| Status | Needs 1st Level Review [ 10005 ] | Closed [ 6 ] |
| Workflow | Loraine Lab Workflow [ 18144 ] | Fall 2019 Workflow Update [ 19965 ] |
| Workflow | Fall 2019 Workflow Update [ 19965 ] | Revised Fall 2019 Workflow Update [ 22086 ] |
Categories are named as Tags in the Cytoscape app codebase and database.
In Cytoscape/apps/models.py we have the tag model.
According to Django application , A model is a class that represents table or collection in our DB, and where every attribute of the class is a field of the table or collection.
So, We can safely say that Categories (Tag) table separately exists in our database. Also App model has attribute called tags which is associated with Tag model.