This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## From http://code.google.com/p/soxred93tools/source/browse/trunk/web/rfap/rfalib3.php | |
/* | |
RfA Analysis Library 2.05 | |
This version breaks compatibility with the 1.x series | |
Copyright (C) 2006 Tangotango (tangotango.wp _at_ gmail _dot_ com) | |
This program is free software; you can redistribute it and/or | |
modify it under the terms of the GNU General Public License | |
as published by the Free Software Foundation; either version 2 | |
of the License, or (at your option) any later version. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
#coding=utf-8 | |
import igraph as ig | |
def main(): | |
from optparse import OptionParser | |
op = OptionParser(usage="usage: %prog file1 [file2 ...]") | |
op.add_option('-c', '--clean', action="store_true", dest="clean", help="Clean output") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This file is part of taolin project (http://taolin.fbk.eu) | |
* Copyright (C) 2008, 2009 FBK Foundation, (http://www.fbk.eu) | |
* Authors: SoNet Group (see AUTHORS.txt) | |
* | |
* This file is a modified version of a file of Ext JS Library 2.0.2 | |
* (see copyright below). | |
* According to the Ext JS Library 2.0.2 license (see | |
* http://extjs.com/license ), Ext JS Library 2.0.2 is double licensed. |