-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Command to save Tables #9
Conversation
Thanks for this fix. Back from vacation (happy new year btw, all the best for 2020 !) I wanted to test this but failed so far. A naive
is not enough to make the File > Export > Table... command appear. I don't know if it's because |
@adaerr all files in You can run If you don't manage to get the project built, let me know and I can upload the jar file. |
Hum, after having maven install |
Hm, what do you see if you type "Table..." in the search bar? And does searching for "Image..." bring up (among others) the File > Import > Image... command (that's also a SciJava Oh, and are you sure you checked out the branch of this PR ( |
A "Table..." search brings up "Image..." brings up |
How is the menu entry set ? In the
but the same json file in the
Is my understanding correct that this metadata is sourced by ImageJ to know how if and where in the menu to put commands ? If yes, how is this file generated ? A brute case-insensitive grep for "export" in my |
In my Fiji installation, it does show up just fine. My suspicion is that you still somehow didn't get my changes from this PR in your build. Can you please try this jar file (rename the zip to jar): |
Yes, with your jar the command shows fine in the menu. My two first tries to save a table as
though, so I'll maybe have to update some other components like FWIW, the recursive diff between the scijava-table-0.4.1-SNAPSHOT jars generated by maven from the git repository, and yours, is
The |
Oh, my bad, sorry @imagejan. I saw a recent merge (c6b82b5 Working in the sense of having a File > Export > Table... command, |
And another "silly me": the export works just fine with In any case sorry for all the noise, TL;DR is: PR works fine for me and appears to create correct CSV output for the PendentDrop plugin's output table. Thanks for the work! |
@adaerr glad it works for you! Regarding See also this comment (originally by @lnyng) in the source code: |
@imagejan regarding support for More seriously, I agree that Then again there is little added value in providing |
2c30448
to
2e618dc
Compare
2e618dc
to
941ac5a
Compare
Thanks @imagejan and @adaerr. Glad this is moving forward. @adaerr wrote:
I just wanted to chime in here that I'm currently working on restoring backwards API compatibility for scifio 0.38.x. There were some IMHO unnecessary breaking changes with methods being removed or changed, which I believe can be restored as deprecated methods to avoid breakage downstream. I released pom-scijava 28.0.0 last week but it still uses scifio 0.37. For pom-scijava 29.0.0, which I'm working on doing now, it will update to scifio 0.38, but I won't release it before unbreaking the API as best I can. |
This pull request has been mentioned on Image.sc Forum. There might be relevant details there: https://forum.image.sc/t/accessing-bonej2-results-table-via-imagej-matlab/29252/4 |
This adds a File > Export > Table... command.
See scijava/scijava-ui-swing#37.
/cc @ctrueden @tferr @adaerr
(In order to test this, you'll also need to have
scijava-plugins-io-table-0.2.0.jar
on your classpath.)