diff options
-rw-r--r-- | Code/parse_ena_xml.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Code/parse_ena_xml.py b/Code/parse_ena_xml.py index 4d8dc1d..131670c 100644 --- a/Code/parse_ena_xml.py +++ b/Code/parse_ena_xml.py @@ -329,6 +329,8 @@ def parse_experiment(fname): def clean_tissue_info(tissue_type): if 'not provided' in tissue_type: return '' + if 'not collected' in tissue_type: + return '' if 'seedings' in tissue_type: # a typo I guess return 'seedlings' if 'rootstock' in tissue_type: |