On Mon, May 12, 2008 at 5:44 PM, Deepa Nair <[EMAIL PROTECTED]> wrote:
> Currently Iam developing my
> application using Python2.5 and networkx library.
> I have downloaded the sage windows binary file.
> But don't know how to install..iam trying..
> Iam completely new to sage and this is to know whether
> it is possible to include some specific libraries only from sage to my
> python application just like networkx. As you know my ultimate aim is to
> generate subgraphs of certain size from a lareg network and to find out
> the repeating patterns (network motifs)..
No, you can't do that. However, Sage includes networks, so once you
get sage running you can, e.g., do
sage: import networkx
sage: networkx.Graph({1:[2,3]})
<networkx.graph.Graph object at 0x7fd86b0>
Sage also has its own graph class that has more functionality and optimized
algorithms beyond what is in networkx. Check out the docs here:
http://sagemath.org/doc/html/ref/node40.html
-- William
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---