-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into TASK-5278
- Loading branch information
Showing
15 changed files
with
209 additions
and
53 deletions.
There are no files selected for viewing
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
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
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
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
4 changes: 2 additions & 2 deletions
4
biodata-models/src/main/java/org/opencb/biodata/models/alignment/RegionCoverage.java
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
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
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
90 changes: 90 additions & 0 deletions
90
...ta-models/src/main/java/org/opencb/biodata/models/clinical/interpretation/MiniPubmed.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package org.opencb.biodata.models.clinical.interpretation; | ||
|
||
public class MiniPubmed { | ||
|
||
private String id; | ||
private String name; | ||
private String journal; | ||
private String summary; | ||
private String date; | ||
private String url; | ||
|
||
public MiniPubmed() { | ||
} | ||
|
||
public MiniPubmed(String id, String name, String summary, String date, String url, String journal) { | ||
this.id = id; | ||
this.name = name; | ||
this.summary = summary; | ||
this.date = date; | ||
this.url = url; | ||
this.journal = journal; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
final StringBuilder sb = new StringBuilder("MiniPubmed{"); | ||
sb.append("id='").append(id).append('\''); | ||
sb.append(", name='").append(name).append('\''); | ||
sb.append(", summary='").append(summary).append('\''); | ||
sb.append(", date=").append(date); | ||
sb.append(", url='").append(url).append('\''); | ||
sb.append(", journal='").append(journal).append('\''); | ||
sb.append('}'); | ||
return sb.toString(); | ||
} | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public MiniPubmed setId(String id) { | ||
this.id = id; | ||
return this; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public MiniPubmed setName(String name) { | ||
this.name = name; | ||
return this; | ||
} | ||
|
||
public String getSummary() { | ||
return summary; | ||
} | ||
|
||
public MiniPubmed setSummary(String summary) { | ||
this.summary = summary; | ||
return this; | ||
} | ||
|
||
public String getDate() { | ||
return date; | ||
} | ||
|
||
public MiniPubmed setDate(String date) { | ||
this.date = date; | ||
return this; | ||
} | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
|
||
public MiniPubmed setUrl(String url) { | ||
this.url = url; | ||
return this; | ||
} | ||
|
||
public String getJournal() { | ||
return journal; | ||
} | ||
|
||
public MiniPubmed setJournal(String journal) { | ||
this.journal = journal; | ||
return this; | ||
} | ||
} |
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
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
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
Oops, something went wrong.