summaryrefslogtreecommitdiffstats
Side-by-side diff
-rw-r--r--test/ParaView/proteins_by_year.csv106810
-rw-r--r--test/ParaView/proteins_by_year.sql19
2 files changed, 106829 insertions, 0 deletions
diff --git a/test/ParaView/proteins_by_year.sql b/test/ParaView/proteins_by_year.sql
new file mode 100644
index 0000000..d4d1499
--- a/dev/null
+++ b/test/ParaView/proteins_by_year.sql
@@ -0,0 +1,19 @@
+-- Extract the protein coordinates with the year of the strain as a
+-- feature for analysis in ParaView.
+
+EXPORT TO proteins_by_year.csv OF DEL
+SELECT C.x,
+ C.y,
+ 0,
+ S.strain_year,
+ C.gi
+FROM influenza_meta M
+JOIN strains_parsed S
+ON (S.GBSeq_accession_version = M.gbseq_accession_version)
+JOIN coordinates C
+ON (C.gi = 'gi|' || M.gi)
+WHERE S.strain_year IS NOT NULL
+ORDER BY S.strain_year;
+
+-- Records with invalid years manually removed from the head and tail
+-- of the exported file. \ No newline at end of file

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.