<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>生信菜鸟团 &#187; cytoscape</title>
	<atom:link href="http://www.bio-info-trainee.com/tag/cytoscape/feed" rel="self" type="application/rss+xml" />
	<link>http://www.bio-info-trainee.com</link>
	<description>欢迎去论坛biotrainee.com留言参与讨论，或者关注同名微信公众号biotrainee</description>
	<lastBuildDate>Sat, 28 Jun 2025 14:30:13 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.33</generator>
	<item>
		<title>cytoscape五步曲之二：在cytoscape里面生成网络图</title>
		<link>http://www.bio-info-trainee.com/2055.html</link>
		<comments>http://www.bio-info-trainee.com/2055.html#comments</comments>
		<pubDate>Thu, 24 Nov 2016 03:21:49 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[基础软件]]></category>
		<category><![CDATA[cytoscape]]></category>
		<category><![CDATA[网络图]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=2055</guid>
		<description><![CDATA[通过上一讲大家应该明白了，网络图是为了展现分子之间的连接关系的，并不是一定要用c &#8230; <a href="http://www.bio-info-trainee.com/2055.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div>通过上一讲大家应该明白了，网络图是为了展现分子之间的连接关系的，并不是一定要用cytoscape来做，只需要根据连接关系给我们的所有点安排一个坐标，然后把相应的线连接起来即可！那么既然我们要学习cytoscape，肯定是要用cytoscape做好第一步，就是根据输入数据来做网络图。</div>
<div>可以先了解一下cytoscape定义好的输入数据，</div>
<div><a href="http://wiki.cytoscape.org/Cytoscape_User_Manual/Network_Formats">http://wiki.cytoscape.org/Cytoscape_User_Manual/Network_Formats</a> 当然，其实木有意义！因为我们不可能拿到cytoscape的输入文件（cys格式的），除非是你朋友传给你的。我们肯定是根据txt.csv等分割的文本文件来做网络图。</div>
<p><span id="more-2055"></span></p>
<div>cytoscape里面有很多示例数据，请务必打开看看：C:\Program Files\Cytoscape_v3.3.0\sampleData 了解它要求什么数据！！！</div>
<div>你可以打开cytoscape，然后直接点击菜单栏的file--&gt;open--&gt;然后选择示例数据的cys文件，就可以看到一个图啦！但是木有任何意义，还是那句老话，你不可能预先得到cys文件，必然是你自己有txt文本数据，然后做出cys的文件。</div>
<div>文本数据必须要有2列，就是source node和target node，其余的都是可选！！！</div>
<div>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td>source</td>
<td>target</td>
</tr>
<tr>
<td>YKR026C</td>
<td>YGL122C</td>
</tr>
<tr>
<td>YGR218W</td>
<td>YGL097W</td>
</tr>
<tr>
<td>YGL097W</td>
<td>YOR204W</td>
</tr>
<tr>
<td>YLR249W</td>
<td>YPR080W</td>
</tr>
<tr>
<td>YLR249W</td>
<td>YBR118W</td>
</tr>
<tr>
<td>YLR293C</td>
<td>YGL097W</td>
</tr>
<tr>
<td>YMR146C</td>
<td>YDR429C</td>
</tr>
<tr>
<td>YDR429C</td>
<td>YFL017C</td>
</tr>
<tr>
<td>YPR080W</td>
<td>YAL003W</td>
</tr>
<tr>
<td>YBR118W</td>
<td>YAL003W</td>
</tr>
<tr>
<td>YOL123W</td>
<td>YGL044C</td>
</tr>
<tr>
<td>YPL211W</td>
<td>YGR014W</td>
</tr>
<tr>
<td>YJL030W</td>
<td>YGL229C</td>
</tr>
<tr>
<td>YJL013C</td>
<td>YGL229C</td>
</tr>
<tr>
<td>YGL122C</td>
<td>YOL123W</td>
</tr>
<tr>
<td>YGR014W</td>
<td>YJL030W</td>
</tr>
<tr>
<td>YGR014W</td>
<td>YJL013C</td>
</tr>
<tr>
<td>YGR203W</td>
<td>YIL061C</td>
</tr>
<tr>
<td>YCR084C</td>
<td>YBR112C</td>
</tr>
<tr>
<td>YCR084C</td>
<td>YCL067C</td>
</tr>
</tbody>
</table>
</div>
<div></div>
<div>导入文本的方式如下：</div>
<div><a href="http://www.bio-info-trainee.com/wp-content/uploads/2016/11/15.png"><img class="alignnone size-full wp-image-2056" src="http://www.bio-info-trainee.com/wp-content/uploads/2016/11/15.png" alt="1" width="848" height="536" /></a></div>
<div><img src="file:///C:/Users/jimmy1314/AppData/Local/YNote/data/jmzeng1314@163.com/5dc2039034d641538c531dcb9a2cf8c3/clipboard.png" alt="" data-media-type="image" data-attr-org-src-id="FD876A7F42DC48919D465A2A2866B2B1" /></div>
<div>其实已经有了这两列信息，在R里面就可以自己画网络图了，或者在html网页里面写js来做。实在是没必要用cytoscape，这也就是为什么像我这样的大神，到现在才开始使用cytoscape的原因。即使用cytoscape生成了网络图，还需要进行一大堆的细节调整，很烦人的。</div>
<div></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/2055.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cytoscape五步曲之一：明白什么是网络图</title>
		<link>http://www.bio-info-trainee.com/2053.html</link>
		<comments>http://www.bio-info-trainee.com/2053.html#comments</comments>
		<pubDate>Thu, 24 Nov 2016 03:12:25 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[基础软件]]></category>
		<category><![CDATA[cytoscape]]></category>
		<category><![CDATA[网络图]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=2053</guid>
		<description><![CDATA[想了想还是写一个系列教程吧，问的朋友也太多了，主要是因为cytoscape跟py &#8230; <a href="http://www.bio-info-trainee.com/2053.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div>想了想还是写一个系列教程吧，问的朋友也太多了，主要是因为cytoscape跟python一样，经历了从2到3的进化阵痛过程，而且进化的面目全非了！！！很多人拿着2.x的说明书教程，视频，然后下载的却是3.x版本的cytoscape，真可怕！！！</div>
<div>已经从两万个芯片探测到的基因里面找到了近千个差异基因了，对它们做了GO/KEGG分析还是抓不住重点，看到文献说可以用PPI数据库做network analysis之后找hub基因，也也许可以说明一些问题！</div>
<div>提到 network analysis ，我想起来我以前总结过 R语言画网络图的三部曲，里面讲到过网络分析的基本原理！</div>
<p><span id="more-2053"></span></p>
<div></div>
<div>网络图是为了展示数据与数据之间的联系，在生物信息学领域，一般是基因直接的相互作用关系，或者通路之间的联系！</div>
<div><span style="color: #ff0000;">通俗点说，就是我有一些点，它们之间并不是两两相互联系，而是有部分是有连接的，那么我应该如何把这些点画在图片上面呢？因为这些都并没有X,Y坐标，只有连接关系，所以我们要根据一个理论来给它们分配坐标，这样就可以把它们画出来了，然后也可以对这些点进行连线，连完线后，就是网络图啦！！！</span></div>
<div>而给它们分配坐标的理论有点复杂，大概类似于物理里面的万有引力和洛仑磁力相结合来给它们分配一个位置，使得总体的能量最小，就是最稳定状态！而通常这个状态是逼近，而不是精确，所以我们其实对同样的数据可以画出无数个网络图，只需使得网络图合理即可！</div>
<div><a href="http://www.bio-info-trainee.com/1355.html">R语言画网络图三部曲之sna</a></div>
<div></div>
<div><a href="http://www.bio-info-trainee.com/1357.html">R语言画网络图三部曲之networkD3</a></div>
<div></div>
<div><img src="file:///C:/Users/jimmy1314/AppData/Local/YNote/data/jmzeng1314@163.com/092902c2814a4945b5e0a9e5e9718c23/13.png" alt="" data-media-type="image" data-attr-org-src-id="345299B1A62B43C4BCAF8E5998BAAA13" /></div>
<div><a href="http://www.bio-info-trainee.com/wp-content/uploads/2016/01/13.png"><img class="alignnone size-full wp-image-1361" src="http://www.bio-info-trainee.com/wp-content/uploads/2016/01/13.png" alt="1" width="704" height="596" /></a></div>
<div>看这个图，就明白了，网络图，<span style="color: #ff0000;"><strong>就是在画布上给感兴趣的点一个坐标</strong></span>，通过统计方法，有两个：Two of the most prominente algorithms (<a href="http://en.wikipedia.org/wiki/Force-based_algorithms_%28graph_drawing%29">Fruchterman &amp; Reingold’s</a> force-directed placement algorithm and <a href="http://cs.wellesley.edu/~cs315/Papers/Kamada-Graph%20Drawing.pdf">Kamada-Kawai’s</a>)</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/2053.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>cytoscape五步曲之三：安装各种插件</title>
		<link>http://www.bio-info-trainee.com/2049.html</link>
		<comments>http://www.bio-info-trainee.com/2049.html#comments</comments>
		<pubDate>Thu, 24 Nov 2016 01:44:28 +0000</pubDate>
		<dc:creator><![CDATA[ulwvfje]]></dc:creator>
				<category><![CDATA[基础软件]]></category>
		<category><![CDATA[cytoscape]]></category>
		<category><![CDATA[插件]]></category>

		<guid isPermaLink="false">http://www.bio-info-trainee.com/?p=2049</guid>
		<description><![CDATA[软件安装我就不多说了，直接去官网下载即可，请务必下载3.x版本，我讲的是 最新版 &#8230; <a href="http://www.bio-info-trainee.com/2049.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>软件安装我就不多说了，直接去官网下载即可，请务必下载3.x版本，我讲的是 最新版教程！</p>
<p>本次讲解如何给cytoscape安装插件，cytoscape本身是一个平台，学者可以在上面开发各种各样功能的插件实现不同的分析需求，类似于R语言这个平台，人们在上面安装包一样。R里面如何安装包我博客讲了4次，基本上看完的人都会懂。而cytoscape不一样，它的插件安装非常简单！非常简单！非常简单！</p>
<p>你只需要去cytoscape的APP中心找到包，如果你打开了cytoscape的界面，那么网页就会有install的字样，非常显眼，点击就自动安装了，这个时候会安装到</p>
<p>C:\Users<span style="color: #ff0000;">\jimmy1314</span>\CytoscapeConfiguration\3\apps\installed 这个目录！！~ 在你的电脑里面 jimmy1314 不一样</p>
<p>如果你这个时候并没有打开cytoscape的界面，那么网页就会有download的字样，也是非常显眼，点击就可以下载， 下载之后你需要自己把下载的jar文件放到cytoscape的安装路径，一般默认是</p>
<p>C:\Program Files\Cytoscape_v3.3.0\apps</p>
<div>最后，cytoscape提供了APP中心，就跟苹果手机安卓手机安卓软件一样，直接在cytoscape软件的菜单栏app中心就可以点击安装！</div>
<div>
<div>一般来说每一个插件都会对应的文章发表，而且一定在cytoscape的APP中心有展示，如果没有，可能是冒牌的哦！比如下面的插件</div>
<div><a href="http://apps.cytoscape.org/apps/cytonca">http://apps.cytoscape.org/apps/cytonca</a></div>
<div><a href="http://apps.cytoscape.org/apps/mcode">http://apps.cytoscape.org/apps/mcode</a></div>
<div><a href="http://apps.cytoscape.org/apps/clueGO">http://apps.cytoscape.org/apps/clueGO</a></div>
<div><a href="http://apps.cytoscape.org/apps/bingo">http://apps.cytoscape.org/apps/bingo</a></div>
<div><a href="http://apps.cytoscape.org/apps/cykeggparser">http://apps.cytoscape.org/apps/cykeggparser</a></div>
<div><a href="http://apps.cytoscape.org/apps/metdisease">http://apps.cytoscape.org/apps/metdisease</a></div>
<div><a href="http://apps.cytoscape.org/apps/disgenetapp">http://apps.cytoscape.org/apps/disgenetapp</a></div>
</div>
<p>我要说的就是这么多了，我安装了十几个插件了，都没有什么问题，如果大家有遇到安装不了的，随时报告我，我来更新教程！<span style="color: #ff0000;">联系jmzeng1314@163.com </span></p>
<p>下面的链接选择性观看：</p>
<p><a href="http://wiki.cytoscape.org/Cytoscape_3/UserManual">http://wiki.cytoscape.org/Cytoscape_3/UserManual</a></p>
<div><a href="http://apps.cytoscape.org/">http://apps.cytoscape.org/</a></div>
<div><a href="http://wiki.cytoscape.org/Cytoscape_User_Manual/Network_Formats" target="_blank">http://wiki.cytoscape.org/Cytoscape_User_Manual/Network_Formats</a></p>
<div><a href="http://www.nature.com/nprot/journal/v2/n10/box/nprot.2007.324_BX1.html" target="_blank">http://www.nature.com/nprot/journal/v2/n10/box/nprot.2007.324_BX1.html</a></div>
<div><a href="http://www.cytoscape.org/download.php" target="_blank">http://www.cytoscape.org/download.php</a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bio-info-trainee.com/2049.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
