diff options
Diffstat (limited to 'scripts/create_sra_metadata')
-rw-r--r-- | scripts/create_sra_metadata/create_sra_metadata.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create_sra_metadata/create_sra_metadata.py b/scripts/create_sra_metadata/create_sra_metadata.py index df77daf..83a1a60 100644 --- a/scripts/create_sra_metadata/create_sra_metadata.py +++ b/scripts/create_sra_metadata/create_sra_metadata.py @@ -179,7 +179,7 @@ for i, EXPERIMENT_PACKAGE in enumerate(EXPERIMENT_PACKAGE_SET): elif TAG_text in ['host_age', 'host age']: if is_integer(VALUE_text): host_age = is_integer(VALUE_text) - if host_age > 0 and host_age < 110: + if host_age >= 0 and host_age < 110: info_for_yaml_dict['host']['host_age'] = host_age info_for_yaml_dict['host']['host_age_unit'] = 'http://purl.obolibrary.org/obo/UO_0000036' elif TAG_text == 'collected_by': |