diff options
-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))) |