File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -90,20 +90,23 @@ export interface DataObjectSearchResult extends BaseSearchResult {
90
90
selected : boolean ;
91
91
}
92
92
93
+ export interface OmicsProcessingBaseResult extends BaseSearchResult {
94
+ study_id : string ;
95
+ add_date : string ;
96
+ mod_date : string ;
97
+ }
98
+
93
99
export interface DerivedDataResult extends BaseSearchResult {
94
100
type : string ;
95
101
git_url : string ;
96
102
started_at_time : string ;
97
103
ended_at_time : string ;
98
104
execution_resource : string ;
99
- was_informed_by : any [ ] ;
105
+ was_informed_by : OmicsProcessingBaseResult [ ] ;
100
106
outputs : DataObjectSearchResult [ ] ;
101
107
}
102
108
103
- export interface OmicsProcessingResult extends BaseSearchResult {
104
- study_id : string ;
105
- add_date : string ;
106
- mod_date : string ;
109
+ export interface OmicsProcessingResult extends OmicsProcessingBaseResult {
107
110
open_in_gold : string ;
108
111
omics_data : DerivedDataResult [ ] ;
109
112
outputs : DataObjectSearchResult [ ] ; // RAW outputs
You can’t perform that action at this time.
0 commit comments