-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improved problem description and initial RAX hypothesis
- Loading branch information
1 parent
ea4bfdd
commit 2703e94
Showing
25 changed files
with
1,104 additions
and
209 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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
38 changes: 36 additions & 2 deletions
38
src/app/node1-problem-formulation/node1-problem-formulation.component.html
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 |
---|---|---|
@@ -1,8 +1,42 @@ | ||
|
||
<h5 [ngbTooltip]="scope_h5_help" class="card-header bg-light p-1">Scope</h5> | ||
<ng-template #scope_h5_help> | ||
<p>e.g. human allowable exposures in health risk assesment, prioritzation, screening, classification and labelling</p> | ||
</ng-template> | ||
<div class="upload-angular-container" class="card-body p-0"> | ||
<ckeditor [id]="this.ckeditor_ids['scope']" [editor]="Editor" [config]="this.ckeditors['scope']" [(ngModel)]="problem_formulation.scope" [disabled]="this.inline_problem_description"></ckeditor> | ||
</div> | ||
<div class="smiles-micromodal-container"> | ||
<app-smiles-micromodal [id]="this.ckeditor_ids['scope']+'-smiles-micromodal'"></app-smiles-micromodal> | ||
</div> | ||
|
||
<h5 [ngbTooltip]="context_h5_help" class="card-header bg-light p-1">Decision context</h5> | ||
<ng-template #context_h5_help> | ||
<p>e.g. regulatory context</p> | ||
</ng-template> | ||
<div class="upload-angular-container" class="card-body p-0"> | ||
<ckeditor [id]="this.ckeditor_ids['decision_context']" [editor]="Editor" [config]="this.ckeditors['decision_context']" [(ngModel)]="problem_formulation.decision_context" [disabled]="this.inline_problem_description"></ckeditor> | ||
</div> | ||
<div class="smiles-micromodal-container"> | ||
<app-smiles-micromodal [id]="this.ckeditor_id+'-smiles-micromodal'"></app-smiles-micromodal> | ||
<app-smiles-micromodal [id]="this.ckeditor_ids['decision_context']+'-smiles-micromodal'"></app-smiles-micromodal> | ||
</div> | ||
|
||
<h5 [ngbTooltip]="" class="card-header bg-light p-1">Endpoints</h5> | ||
<div class="upload-angular-container" class="card-body p-0"> | ||
<ckeditor [id]="this.ckeditor_id" [editor]="Editor" [config]="this.Editor_config" [(ngModel)]="problem_description" [disabled]="this.inline_problem_description"></ckeditor> | ||
<ckeditor [id]="this.ckeditor_ids['endpoints']" [editor]="Editor" [config]="this.ckeditors['endpoints']" [(ngModel)]="problem_formulation.endpoints" [disabled]="this.inline_problem_description"></ckeditor> | ||
</div> | ||
<div class="smiles-micromodal-container"> | ||
<app-smiles-micromodal [id]="this.ckeditor_ids['endpoints']+'-smiles-micromodal'"></app-smiles-micromodal> | ||
</div> | ||
|
||
<h5 [ngbTooltip]="uncertainty_h5_help" class="card-header bg-light p-1">Tolerable uncertainty threshold</h5> | ||
<ng-template #uncertainty_h5_help> | ||
<p>Tolerable uncertainty threshold for Read-Across results</p> | ||
</ng-template> | ||
<div class="upload-angular-container" class="card-body p-0"> | ||
<ckeditor [id]="this.ckeditor_ids['uncertainty']" [editor]="Editor" [config]="this.ckeditors['uncertainty']" [(ngModel)]="problem_formulation.uncertainty" [disabled]="this.inline_problem_description"></ckeditor> | ||
</div> | ||
<div class="smiles-micromodal-container"> | ||
<app-smiles-micromodal [id]="this.ckeditor_ids['uncertainty']+'-smiles-micromodal'"></app-smiles-micromodal> | ||
</div> | ||
|
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.