-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/1.13.5' into feature/archive
# Conflicts: # app_api_template.coffee # app_template.coffee # modules/CmpdReg/src/server/routes/CmpdRegRoutes.coffee # modules/CmpdRegBulkLoader/src/server/routes/CmpdRegBulkLoaderRoutes.coffee # package.json
- Loading branch information
Showing
250 changed files
with
24,201 additions
and
6,484 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ACAS_TAG=latest | ||
ACAS_TAG=latest |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM mcneilco/racas-oss:${ACAS_TAG} | ||
FROM mcneilco/racas-oss:develop | ||
|
||
# RSTUDIO INSTALL | ||
USER root | ||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Example: | ||
#export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client64/lib:$LD_LIBRARY_PATH | ||
#export LD_LIBRARY_PATH=/usr/lib/oracle/11.2/client64/lib:$LD_LIBRARY_PATH | ||
if [ -e "/opt/rh/rh-python36/enable" ]; then source /opt/rh/rh-python36/enable; fi; |
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,76 +1,105 @@ | ||
exports.entityTypes = | ||
'Corporate Parent ID': | ||
exports.entityTypes = [ | ||
code: 'Corporate Parent ID' | ||
type: 'compound' | ||
kind: 'parent name' | ||
codeOrigin: 'ACAS CmpdReg' | ||
displayName: 'Corporate Parent ID' | ||
sourceExternal: true | ||
parent: true | ||
|
||
'Corporate Batch ID': | ||
isTestedEntity: false | ||
, | ||
code: 'Corporate Batch ID' | ||
type: 'compound' | ||
kind: 'batch name' | ||
codeOrigin: 'ACAS CmpdReg' | ||
displayName: 'Corporate Batch ID' | ||
sourceExternal: true | ||
parent: false | ||
|
||
'Protein Parent': | ||
isTestedEntity: true | ||
, | ||
code: 'Protein Parent' | ||
type: 'parent' | ||
kind: 'protein' | ||
codeOrigin: 'ACAS LsThing' | ||
displayName: 'Protein Parent' | ||
sourceExternal: false | ||
parent: true | ||
|
||
'Protein Batch': | ||
isTestedEntity: false | ||
, | ||
code: 'Protein Batch' | ||
type: 'batch' | ||
kind: 'protein' | ||
codeOrigin: 'ACAS LsThing' | ||
displayName: 'Protein Batch' | ||
sourceExternal: false | ||
parent: false | ||
|
||
'Gene ID': | ||
isTestedEntity: false | ||
, | ||
code: 'Gene ID' | ||
type: 'gene' | ||
kind: 'entrez gene' | ||
codeOrigin: 'ACAS LsThing' | ||
displayName: 'Gene ID' | ||
sourceExternal: false | ||
parent: false | ||
|
||
'Container Plate': | ||
isTestedEntity: false | ||
, | ||
code: 'Container Plate' | ||
type: 'container' | ||
kind: 'plate' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Plate' | ||
sourceExternal: false | ||
parent: false | ||
model: require("../routes/ServerUtilityFunctions.js").ContainerPlate | ||
|
||
'Container Tube': | ||
isTestedEntity: false | ||
, | ||
code: 'Container Tube' | ||
type: 'container' | ||
kind: 'tube' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Tube' | ||
sourceExternal: false | ||
parent: false | ||
model: require("../routes/ServerUtilityFunctions.js").ContainerTube | ||
|
||
'Definition Container Plate': | ||
isTestedEntity: false | ||
, | ||
code: 'Definition Container Plate' | ||
type: 'definition container' | ||
kind: 'plate' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Definition Plate' | ||
sourceExternal: false | ||
parent: false | ||
model: require("../routes/ServerUtilityFunctions.js").DefinitionContainerPlate | ||
|
||
'Definition Container Tube': | ||
isTestedEntity: false | ||
, | ||
code: 'Definition Container Tube' | ||
type: 'definition container' | ||
kind: 'tube' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Definition Tube' | ||
sourceExternal: false | ||
parent: false | ||
model: require("../routes/ServerUtilityFunctions.js").DefinitionContainerTube | ||
isTestedEntity: false | ||
, | ||
code: 'Solution Container Tube' | ||
type: 'container' | ||
kind: 'tube' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Solution Aliquot' | ||
sourceExternal: false | ||
parent: false | ||
isTestedEntity: false | ||
, | ||
code: 'Location Container' | ||
type: 'location' | ||
kind: 'default' | ||
codeOrigin: 'ACAS LsContainer' | ||
displayName: 'Location' | ||
sourceExternal: false | ||
parent: false | ||
model: require("../routes/ServerUtilityFunctions.js").LocationContainer | ||
isTestedEntity: false | ||
] |
Oops, something went wrong.