-
Notifications
You must be signed in to change notification settings - Fork 7
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
modelmatcher changes #72
base: development
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@lucianli123 Have you found gene information for fission yeast?
} | ||
else{ | ||
data=new HashSet<>(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to handle the error if a registry is missing a taxon.
@@ -50,11 +50,12 @@ public void updateOrganInfos() { | |||
OrganInfo organInfo = organInfoRepository.findByUberonId( term.getId() ); | |||
if ( organInfo == null ) { | |||
organInfo = new OrganInfo(); | |||
organInfo.setName( term.getName() ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to add the description here as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a bit silly if we do that because we can only add missing organ systems, never update anything.
@@ -49,7 +49,7 @@ | |||
th:checked="${gene.tier == T(ubc.pavlab.rdp.model.enums.TierType).TIER1}"/> | |||
</td> | |||
<td th:if="${viewOnly != null}" | |||
th:text="${gene.tier}" | |||
th:text="${gene.tier==T(ubc.pavlab.rdp.model.enums.TierType).TIER1}?'Primary':'Secondary'" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here we should use the labels from the TierType, and possible use i18n to allow instance to change the wording.
I'll review the changes later. I think most of these have already been addressed in the 1.4 and any issues could be fixed in a patch release. |
@lucianli123 You should rebase this change on the master branch, it contains the latest 1.4.1 release. I can help you out if you have merge issues. |
No description provided.