Hi,
I am having issues increasing the memory when running my custom layout plugin. Is there a maven parameter or something that I need to change in order for the program to increase in memory? I am working with a graph that has roughly 40,000 nodes and 80,000 edges.
Thanks,
Surya
Search found 11 matches
- 07 Jun 2016 11:55
- Forum: How-To and Troubleshooting
- Topic: Increasing Memory when running gephi-plugin
- Replies: 1
- Views: 1515
- 02 Jun 2016 13:07
- Forum: How-To and Troubleshooting
- Topic: Export Plugin
- Replies: 3
- Views: 2003
Re: Export Plugin
Thanks! Will clean up and comment my code and then submit my pull request. Is this the only way to get the plugin useable by other people and/or a gephi-toolkit app? It seems like people used to be able to download a plugin and install it into gephi so I was wondering if it was package-able to be di...
- 31 May 2016 14:10
- Forum: How-To and Troubleshooting
- Topic: Export Plugin
- Replies: 3
- Views: 2003
Export Plugin
Hi, I am trying to export a custom layout plugin I made however I am having trouble doing so. I was trying to follow the instructions here: https://github.com/gephi/gephi/wiki/Plugin-Quick-Start but these seem quite out dated. Could someone help me export my plugin? I want to send the plugin to a fe...
- 23 May 2016 15:05
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Ah thanks, running install with the debug option helped me find the issue. The build was failing with the following: [ERROR] Project uses classes from transitive module org.netbeans.api:org-openide-util:jar:RELEASE81 which will not be accessible at runtime. [INFO] To fix the problem, add this module...
- 23 May 2016 14:30
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Thanks, I have updated it now by correcting what you mentioned. The "Reactor Summary" for the build process however still says "SKIPPED" for my plugin, and the layout is not listed in the layout drop down, do you know how I might go about fixing the "SKIPPED" issue?
- 23 May 2016 12:03
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Is there any other reason why the layout might not be listed there? I tried running mvn org.gephi:gephi-maven-plugin:run in from the root (gephi-plugins) folder but the same thing happened as when I run it through netbeans, the plugin doesnt appear in the layout drop down.
- 23 May 2016 11:54
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Okay I will try running it through the console instead, I have been running it through netbeans by running the gephi-plugins project. When gephi runs, is the plugin layout supposed to appear in the drop down with the other layouts? Also I just realised when I click on Plugins in the menu bar (not To...
- 23 May 2016 11:34
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
I do have the annotation, however it still was not working so I tried to start using the geo plugin instead of the grid one, however I ended up getting stuck in the same place. Here is my current repo: https://github.com/suryanash/gephi-plugins
Does anything stick out as incorrectly done to you?
Does anything stick out as incorrectly done to you?
- 19 May 2016 18:17
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Ah I see, I have now set up my directories like that. Thanks, I now have no errors in Netbeans. When I run gephi by right clicking gephi-plugins and running it, I can't seem to see the layout listed anywhere. However I can see the plugin when I go to Tools > Plugins in Installed.
- 19 May 2016 14:55
- Forum: How-To and Troubleshooting
- Topic: Help with creating a layout plugin
- Replies: 15
- Views: 8922
Re: Help with creating a layout plugin
Thanks, I am trying to work from just the gephi-plugins fork now. I have created my own module (GravityPlugin) now but am having trouble adding in the grid layout code from the bootcamp (the files I downloaded/copy pasted were GridLayout.java and GridLayoutBuilder.java). I have placed the code in th...