-
Notifications
You must be signed in to change notification settings - Fork 3
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
Release prep for Goldstandard paper #55
Open
hlapp
wants to merge
21
commits into
master
Choose a base branch
from
goldstandard-take2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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 Hong: > This version supports output the results as a csv file and also output a > version file writeCSVandVersionFiles.
The Ontology folder in v0.1.0-alpha contains the older fish glossaries used for processing fish files before, and it was not used in the SemanticCharaParser experiment for the Goldstandard.
The 4.x release series should have been the one active while this was developed.
Converting from one type to an incompatible one is no longer allowed in Java 1.8. Here, a list of FormalConcept (an interface) instances are not known to the compiler to be instances of Quality at runtime, and so the conversion is disallowed. The fix here is simple - convert to a non-generic list type first, and then back to the desired generics template type.
The code compiles but it may miss resources that need to be packaged.
Although the POM for a Maven-based build of the phenoscapeII subproject is left in place here, the overall gains from it are minimal, for several reasons: - To run the application, both subproject JARs need to be built, and they reuse some of the same dependencies. Building only one through Maven and the other not yields little to no benefit for the overall list of dependencies to store and manage. - To run the application, all the dependency JARs are still needed at runtime. We could instruct Maven to fold each dependency along with the local classes all into a single self-contained JAR, but that would require to build everything through maven to be really effedctive. And it would also require producing platform-specific packages. - Our objective here is not to create a distributable and executable self-contained application, but to have a mechanism to build and run the application reproducibly and platform-independently. Hence, we're going back to simply using the jdk tools to compile and package, and require platform-specific dependencies to be provided by the user.
Also adds a reference to this document into the README.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.