summaryrefslogtreecommitdiff
path: root/issues
diff options
context:
space:
mode:
authorMunyoki Kilyungi2023-08-09 13:04:57 +0300
committerMunyoki Kilyungi2023-08-09 13:04:57 +0300
commit82b37aa36de9633c225df619abce21bcbbc7dd8f (patch)
treec6e023782e4fc4b0154790e904587567ed873640 /issues
parent5f3fad926e06e2889ed9c7aae2bf94dbd39c870b (diff)
downloadgn-gemtext-82b37aa36de9633c225df619abce21bcbbc7dd8f.tar.gz
Fix minor typo
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'issues')
-rw-r--r--issues/modelling-phenotype-data.gmi2
1 files changed, 1 insertions, 1 deletions
diff --git a/issues/modelling-phenotype-data.gmi b/issues/modelling-phenotype-data.gmi
index e7f5951..203c38d 100644
--- a/issues/modelling-phenotype-data.gmi
+++ b/issues/modelling-phenotype-data.gmi
@@ -80,7 +80,7 @@ PubMed_ID: NULL Abstract: Entered by RWW, Dec 1, 2004. Males have lower counts t
* As evidenced in the example above, we have publications that are the same, the only different thing being the abstract. Are these duplicates essentially the same thing? Or is it important to retain this information?
-* We have traits that are marked as "public". We have a "confidential" and "public" flags that identify a trait either public or private. However, we have cases where a trait is marked as public, but the abstract indicates otherwise. Right there are 4 entries that I'm aware of. Here's an example:
+* We have traits that are marked as "public". We have a "confidential" and "public" flag that identify a trait as either public or private. However, we have cases where a trait is marked as public, but the abstract indicates otherwise. Currently there are 4 entries that I'm aware of. Here's an example:
```
SELECT PublishFreeze.Public AS Public, PublishFreeze.confidentiality AS Confidentiality, Publication.* FROM Phenotype LEFT JOIN PublishXRef ON Phenotype.Id = PublishXRef.PhenotypeId LEFT JOIN Publication ON Publication.Id = PublishXRef.PublicationId LEFT JOIN PublishFreeze ON PublishFreeze.InbredSetId = PublishXRef.InbredSetId LEFT JOIN InfoFiles ON InfoFiles.InfoPageName = PublishFreeze.Name WHERE PublishFreeze.public > 0 AND PublishFreeze.confidentiality < 1 AND PubMed_ID IS NULL AND Publication.Abstract LIKE "%confidential%" LIMIT 1 \G