Skip to content

Commit

Permalink
Convert more units
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed May 25, 2012
1 parent 06c4f96 commit 97b61a8
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions activities.groovy
Expand Up @@ -23,15 +23,29 @@ unitMappings = [
uM:"http://www.openphacts.org/units/Micromolar",
mM:"http://www.openphacts.org/units/Millimolar",
pM:"http://www.openphacts.org/units/Picomolar",
"%":"http://qudt.org/schema/qudt#floatPercentage"
"%":"http://qudt.org/schema/qudt#floatPercentage",
"ug.mL-1":"http://www.openphacts.org/units/MicrogramPerMilliliter",
"ug/ml":"http://www.openphacts.org/units/MicrogramPerMilliliter",
"ug ml-1":"http://www.openphacts.org/units/MicrogramPerMilliliter",
"pg ml-1":"http://www.openphacts.org/units/PicogramPerMilliliter",
]

normalizationMappings = [
"IC50" : [
nM:"nM",
uM:"nM",
mM:"nM",
pM:"nM"
pM:"nM",
"ug.mL-1":"ug/ml",
"ug/ml":"ug/ml",
"ug ml-1":"ug/ml",
"pg ml-1":"ug/ml"
],
"Potency" : [
M:"uM",
uM:"uM",
nM:"uM",
mM:"uM"
]
]

Expand Down

0 comments on commit 97b61a8

Please sign in to comment.