aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/show_trait/SampleList.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/show_trait/SampleList.py')
-rw-r--r--gn2/wqflask/show_trait/SampleList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gn2/wqflask/show_trait/SampleList.py b/gn2/wqflask/show_trait/SampleList.py
index 64fc8fe6..64909d6e 100644
--- a/gn2/wqflask/show_trait/SampleList.py
+++ b/gn2/wqflask/show_trait/SampleList.py
@@ -81,7 +81,8 @@ class SampleList:
sample.extra_attributes['36'].append(
webqtlConfig.RRID_MOUSE_URL % the_rrid)
elif self.dataset.group.species == "rat":
- if len(rrid_string):
+ # Check if it's a list just in case a parent/f1 strain also shows up in the .geno file, to avoid being added twice
+ if len(rrid_string) and not isinstance(sample.extra_attributes['36'], list):
the_rrid = rrid_string.split("_")[1]
sample.extra_attributes['36'] = [
rrid_string]