diff options
author | Munyoki Kilyungi | 2023-06-06 14:41:33 +0300 |
---|---|---|
committer | BonfaceKilz | 2023-06-12 19:06:36 +0300 |
commit | d7c1100ebbb79839b84e7641e8a50a44841515eb (patch) | |
tree | 2ccb4ce9e154c10f726e03755d09cc5068e9e978 | |
parent | 672e902bfede56e952ca006fd2d8745de637f4ba (diff) | |
download | gn-transform-databases-d7c1100ebbb79839b84e7641e8a50a44841515eb.tar.gz |
Minor identation fix
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rwxr-xr-x | examples/dump-dataset-metadata.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/dump-dataset-metadata.scm b/examples/dump-dataset-metadata.scm index cf0504a..92e858c 100755 --- a/examples/dump-dataset-metadata.scm +++ b/examples/dump-dataset-metadata.scm @@ -152,9 +152,9 @@ (field Tissue Short_Name))) (set gn:normalization (string->identifier "avgmethod" - ;; If AvgMethodName is NULL, assume N/A. - (if (string-blank? (field AvgMethod Name AvgMethodName)) - "N/A" (field AvgMethod Name AvgMethodName)))) + ;; If AvgMethodName is NULL, assume N/A. + (if (string-blank? (field AvgMethod Name AvgMethodName)) + "N/A" (field AvgMethod Name AvgMethodName)))) (set gn:datasetOfPlatform (string->identifier "platform" (field GeneChip Name GeneChip))) |