forked from cytoscape/cytoscape.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentation_developers.html
More file actions
229 lines (208 loc) · 10.2 KB
/
documentation_developers.html
File metadata and controls
229 lines (208 loc) · 10.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Developer Documentation</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<link href="css/main.bootstrap.css" rel="stylesheet">
</head>
<body>
<nav></nav>
<div class="belt light-gray">
<div class="container">
<div class="row">
<div class="col-md-4">
<a href="cy3.html">
<img src="images/cytoscape_logo_left.png" />
</a>
</div>
<div class="col-md-8">
<h2>Get Involved!</h2>
<h3>Publish Your Apps</h3>
<p>
Got a new App? Please <a href="http://apps.cytoscape.org">send it to us</a>. Once your plugin is registered to the store, Cytoscape users can access it through App Manager.
</p>
<h3>Google Summer of Code</h3>
<p>
If you are a students, you can contribute to Cytoscape through Google Summer of Code program. For more information about GSoC, please visit <a href="http://nrnb.org/gsoc.html">NRNB web site.</a>
</p>
<h3>Join Core Team</h3>
<p>
Want to hack on the Cytoscape Core? Volunteers are always welcome! Joining our community is easy. There's no commitment beyond writing good code and you can contribute as much or as little as you like. Here is how to get started:
</p>
<ul>
<li>
Ask questions and start sending us patches on the cytoscape-discuss mailing list.
</li>
<li>
We'll provide commit access to our <a href="https://github.com/cytoscape">GitHub repository</a>
once we trust you!
</li>
<li>
Start joining our team conference calls each Thursday to coordinate your development efforts with ours. <a href="https://plus.google.com/109114602647105355066">Contact us</a> for details on calling in.
</li>
<li>
If you remain a helpful contributor to the team, we'll vote you in as a core developer!
</li>
<li>
If your company or institution is interested in taking a larger role in the project, join the <a href="http://www.cytoscapeconsortium.org/">Cytoscape Consortium</a>.
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-3">
<a href="https://github.com/cytoscape">
<img src="images/github.png" />
</a>
</div>
<div class="col-lg-9">
<h2>Developer Tools</h2>
<h3>Issue Tracker, Nexus Repository, Nightly Builds, and Code Metrics</h3>
<p>
<a href="http://code.cytoscape.org/">code.cytoscape.org</a> is the start page for all developers. You can cehck the most up-to-date information about Cytoscape Core projects from here.
</p>
</div>
</div>
<div class="row">
<h3>Port Your 2.x Plugins</h3>
<p>
With the release of the 3.x, Cytoscape core team no longer maintaining 2.x code and you need to port your Plugins to 3.x series to use latest features in Cytoscape. In the sections below, you'll find links to documentation and tutorials related to 3.x app development.
</p>
<h3>New Cytoscape Code Repository on GitHub</h3>
<p>
Cytoscape Core projects are now hosted on <a href="https://github.com/cytoscape">GitHub</a>. From now on, latest version of Cytoscape code should be obtained from the following git repositories:
</p>
<ul>
<li>
<a href="https://github.com/cytoscape/cytoscape2">Cytoscape 2.x</a>
</li>
<li>
<a href="https://github.com/cytoscape/cytoscape">Cytoscape 3.x</a>
</li>
<li>
<a href="https://github.com/cytoscape/cytoscape.js">Cytoscape.js</a>
</li>
</ul>
<p>
Note that Cytoscape 3 is a multi-repository project. You need to read
<a href="https://github.com/cytoscape/cytoscape/blob/develop/README.md">this</a>
document to learn how to clone all Cytoscape 3 projects.
</p>
<h3>Questions?</h3>
<ul>
<li>
<a href="http://stackoverflow.com/questions/tagged/cytoscape?sort=votes&pagesize=15" target="_blank">
FAQ at Stackoverflow
</a>
</li>
<li>
<a href="https://groups.google.com/forum/?fromgroups#!forum/cytoscape-discuss" target="_blank">
Mailing list for developers
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="snow-white">
<div class="container">
<div class="row">
<div class="col-lg-3">
<h3>Documentation for 3.x App Developers</h3>
<h4>What is Cytoscape 3.x?</h4>
<p>
Learn about the
<a href="http://wiki.cytoscape.org/Cytoscape_3/CoreDevelopment">
Architecture, Backward Compatibility, and API</a> of Cytoscape 3.x.
</p>
<h4>What are 3.x Apps?</h4>
<p>
Primary documentation for Cytoscape 3.x
<a href="http://wiki.cytoscape.org/Cytoscape_3/AppDeveloper">
app development
</a>.
</p>
<p>
All Cytoscape 3.x <a href="http://opentutorials.cgl.ucsf.edu/index.php/Portal:Cytoscape3">
app development tutorials</a>.
</p>
</div>
<div class="col-lg-3">
<h3>Code for 3.x App Developers</h3>
<h4 class="cy-latest-version">Latest Cytoscape Release: </h4>
<ul>
<li>
<a href="download.php" class="cy-latest-version">
Download Cytoscape </a>
</li>
<li>
<a href="http://chianti.ucsd.edu/cytoscape-3.2.0/API" class="cy-latest-version">
JavaDocs for
</a>
</li>
<li>
<a href="http://chianti.ucsd.edu/cytoscape-3.2.0/swing-app-api-3.2.0.jar" class="cy-latest-version">
API Jar for
</a>
</li>
<li>
<a href="https://github.com/cytoscape/cytoscape-app-developer/tree/3.2.0" class="cy-latest-version">
App Developer Project Tag:
</a>
</li>
</ul>
</div>
<div class="col-lg-3">
<h3>Quick Start Guides for 2.x App Developers</h3>
<ul>
<li><a href="http://cytoscape.wodaklab.org/wiki/Cytoscape_Plugin_Tutorial">Cytoscape Plugin
Development
Tutorial</a>
</li>
<li>Essential Documents
<ul>
<li><a href="http://cytoscape.wodaklab.org/wiki/plugin_developer_tutorial">Plugin Developer
Cookbook</a>
</li>
<li>
Javadoc API (
<script>
document.write(latestVersion)
</script>
)</a>
</li>
</ul>
</li>
</ul>
<h4>Build Cytoscape 2.x from Source Code</h4>
<p>
<a href="https://github.com/cytoscape">GitHub repository</a> is available for all developers. Detailed instruction how to clone 2.x repository is available <a href="https://github.com/cytoscape/cytoscape2">here</a>.
</p>
</div>
<div class="col-lg-3">
<h3>Other Cytoscape 2.x Resources</h3>
<ul>
<li>
<a href="http://wiki.cytoscape.org/">
Cytoscape Developers Wiki
</a>
</li>
<li>
<a href="http://wiki.cytoscape.org/RFC_Index">
Cytoscape RFC
</a>
- On-going projects for future versions of Cytoscape
</li>
</ul>
</div>
</div>
</div>
</div>
<footer></footer>
<script src="js/setup_page.js"></script>
</body>
</html>