-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature(Edam):added edam ontology selection
- Loading branch information
Showing
9 changed files
with
2,892 additions
and
2,735 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { EdamOntologyTerm } from './edam-ontology-term'; | ||
|
||
describe('EdamOntologyTerm', () => { | ||
it('should create an instance', () => { | ||
expect(new EdamOntologyTerm()).toBeTruthy(); | ||
}); | ||
}); |
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,56 @@ | ||
export class EdamOntologyTerm { | ||
|
||
private _storid: number; | ||
private _name: string; | ||
private _term: string; | ||
private _uri: string; | ||
private _is_a: number[]; | ||
|
||
constructor(storid: number, name: string, term: string, uri: string, is_a: number[]) { | ||
this._storid = storid; | ||
this._name = name; | ||
this._term = term; | ||
this._uri = uri; | ||
this._is_a = is_a; | ||
} | ||
|
||
get storid(): number { | ||
return this._storid; | ||
} | ||
|
||
set storid(value: number) { | ||
this._storid = value; | ||
} | ||
|
||
get name(): string { | ||
return this._name; | ||
} | ||
|
||
set name(value: string) { | ||
this._name = value; | ||
} | ||
|
||
get term(): string { | ||
return this._term; | ||
} | ||
|
||
set term(value: string) { | ||
this._term = value; | ||
} | ||
|
||
get uri(): string { | ||
return this._uri; | ||
} | ||
|
||
set uri(value: string) { | ||
this._uri = value; | ||
} | ||
|
||
get is_a(): number[] { | ||
return this._is_a; | ||
} | ||
|
||
set is_a(value: number[]) { | ||
this._is_a = value; | ||
} | ||
} |
Empty file.