-
Notifications
You must be signed in to change notification settings - Fork 3
/
8-FlybaseQuestions.metta
executable file
·1007 lines (867 loc) · 50.3 KB
/
8-FlybaseQuestions.metta
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;; Load the VSPACE python space
;; to start in MeTTaLog use ./MeTTa 8-FlybaseQuestions.metta --repl
!(extend-py! metta_vspace.metta_learner)
!(fb-info!)
;; MeTTaLog only:
!(ensure-loaded! whole_flybase)
!(fb-info!)
(: number-of (-> Countable Number))
(= (number-of $query $length)
(length! (match &self $query t) $length))
;; inside flybase we only see 74 answers
!(match &flybase (gene_map_table $Org $Sym $G 3-59 $D $E) ($Sym $G $D $E))
;; should return no results in &self
!(match &self (gene_map_table $Org $Sym $G 3-59 $D $E) ($Sym $G $D $E))
!(get-atoms &flybase (gene_map_table $Org $Sym $G 3-59 $D $E))
;; our special hack to see into other spaces
!(number-of (gene_map_table! $Org $Sym $G 3-59 $D $E)) ;; 74
;; flybase space answer should be 0
!(number-of (gene_map_table $Org $Sym $G 3-59 $D $E)) ;; 0
;; use the host system limiter of 5
!(number-of (limit! 5 (gene_map_table! $Org $Sym $G 3-59 $D $E))) ;; 5
!(assertEqual (number-of (gene_map_table! $MapID $OrganismAbbreviation $ParalogGeneID 3-59 $CytogeneticLoc $SequenceLoc)) 74)
; (gene_map_table! $MapID $OrganismAbbreviation $ParalogGeneID $RecombinationLoc $CytogeneticLoc $SequenceLoc)
;; What recombination locations have 74 Paralog Genes?
;; !(, (gene_map_table! $_ $_ $_ $RecombinationLoc $_ $_) (== 74 (number-of (gene_map_table! $_ $_ $ParalogGeneID $RecombinationLoc $_ $_))))
;; print no more than the first 5 answers
(= (query-info2 $English $template $query)
(,
(println! ($English "=" $query))
(println! (limit! 5 (match &flybase $query $template)))
(println! ("time was = " (time! (number-of $query $count))))
(println! ("total of query = " $count))))
(= (query-info $English $template $query)
(let $_ (println ($English "=" $query))
(limit! 5 (match &flybase $query $template))))
;;; Types Used in Predicates
; Type Declarations
(: GeneticIdentifierType TypeType)
(: GeneticSymbolType TypeType)
(: OrganismTaxonomyType TypeType)
(: MolecularBiologyType TypeType)
(: GeneticMappingType TypeType)
(: PublicationType TypeType)
(: BiologicalFunctionType TypeType)
(: TextType TypeType)
(: MetadataType TypeType)
; Genetic Identifier Types
(: GeneID GeneticIdentifierType)
(: AlleleID GeneticIdentifierType)
(: ParalogGeneID GeneticIdentifierType)
(: DmelGeneID GeneticIdentifierType)
(: StartingGeneID GeneticIdentifierType)
(: InteractingGeneID GeneticIdentifierType)
(: GroupMemberFBGene GeneticIdentifierType)
(: PrimaryFBid GeneticIdentifierType)
(: FBgn GeneticIdentifierType)
(: CloneID GeneticIdentifierType)
(: TranscriptID GeneticIdentifierType)
(: PolypeptideID GeneticIdentifierType)
(: FBtiID GeneticIdentifierType) ; FlyBase Transposable Element Insertion ID
(: FBcl GeneticIdentifierType) ; FlyBase cDNA clone ID
; Genetic Symbol Types
(: GeneSymbol GeneticSymbolType)
(: AlleleSymbol GeneticSymbolType)
(: ParalogGeneSymbol GeneticSymbolType)
(: DmelGeneSymbol GeneticSymbolType)
(: StartingGeneSymbol GeneticSymbolType)
(: InteractingGeneSymbol GeneticSymbolType)
(: GroupMemberFBGeneSymbol GeneticSymbolType)
(: CurrentSymbol GeneticSymbolType)
; Organism and Taxonomy Types
(: OrganismAbbreviation OrganismTaxonomyType)
(: Genus OrganismTaxonomyType)
(: Species OrganismTaxonomyType)
(: NCBITaxon OrganismTaxonomyType)
; Gene Expression and Molecular Biology Types
(: NucleotideAccession MolecularBiologyType)
(: CDNAaccession MolecularBiologyType)
(: ESTaccession MolecularBiologyType)
(: UniprotAccession MolecularBiologyType)
(: RepresentativeProtein MolecularBiologyType)
(: IdenticalProtein MolecularBiologyType)
(: RNAProcess MolecularBiologyType)
; Genetic Location and Mapping Types
(: MapID GeneticMappingType)
(: RecombinationLoc GeneticMappingType)
(: CytogeneticLoc GeneticMappingType)
(: SequenceLoc GeneticMappingType)
(: ArmScaffold GeneticMappingType)
(: Location GeneticMappingType)
(: GenomicLocation GeneticMappingType)
(: Range GeneticMappingType)
(: Orientation GeneticMappingType)
; Publications and References Types
(: PublicationID PublicationType)
(: ReferenceFBrf PublicationType)
(: PubMedID PublicationType)
(: DOI PublicationType)
(: PMCID PublicationType)
; Phenotypes, Diseases, and Biological Functions Types
(: Phenotype BiologicalFunctionType)
(: Disease BiologicalFunctionType)
(: GeneRegulation BiologicalFunctionType)
(: EnzymeFunction BiologicalFunctionType)
(: DOTerm BiologicalFunctionType)
(: SOTermName BiologicalFunctionType)
(: GOID BiologicalFunctionType)
(: ECNumber BiologicalFunctionType)
(: PhenotypeID BiologicalFunctionType)
(: DiseaseAnnotation BiologicalFunctionType)
(: InteractionType BiologicalFunctionType)
; Textual Data Types
(: GeneFullName TextType)
(: GeneSnapshotText TextType)
(: SummaryText TextType)
(: SnapshotText TextType)
(: MiniRef TextType) ; Short reference or description
(: DatasetMetadataName TextType)
(: ItemName TextType)
(: EntityName TextType)
(: CloneName TextType)
(: R6ConversionNotes TextType)
; Miscellaneous and Metadata Types
(: DatasetMetadataID MetadataType)
(: ItemID MetadataType)
(: EntityID MetadataType)
(: FBGroupID MetadataType)
(: FBGroupSymbol MetadataType)
(: FBGroupName MetadataType)
(: ParentFBGroupID MetadataType)
(: TaxidInteractorA MetadataType)
(: TaxidInteractorB MetadataType)
(: CGNumber MetadataType)
(: PhysicalInteraction MetadataType)
% NondetReturn means these are are backtrackable predicates instead of functions
(: query-info (-> EnglishText Atom Atom NondetReturn))
(: allele_genetic_interactions! (-> AlleleSymbol AlleleFBal Interaction ReferenceFBrf NondetReturn))
(: allele_phenotypic! (-> AlleleSymbol AlleleFBal Phenotype ReferenceFBrf NondetReturn))
(: automated_gene_summaries! (-> GeneID SummaryText NondetReturn))
(: best_gene_summary! (-> GeneID GeneSymbol SummarySource Summary NondetReturn))
(: cDNA_clone! (-> CloneID OrganismAbbreviation CloneName DatasetMetadataName (List CDNAaccession) (List ESTaccession) NondetReturn))
(: cyto-genetic-seq! (-> CytogeneticMapPosition GeneticMapPosition SequenceCoordinatesRelease6 R6ConversionNotes NondetReturn))
(: dataset_metadata! (-> DatasetMetadataID DatasetMetadataName ItemID ItemName NondetReturn))
(: disease_model_annotations! (-> GeneID GeneSymbol HGNC DOQualifier DO DOTerm AlleleUsedInModelFBal AlleleUsedInModelSymbol BasedOnOrthologyWithHGNCID BasedOnOrthologyWithSymbol EvidenceInteractingAlleles ReferenceFBrf NondetReturn))
(: Dmel_enzyme! (-> GeneGroupID GeneGroupName (List GeneGroupGOID) (List GeneGroupGOName) (List GeneGroupECNumber) (List GeneGroupECName) GeneID GeneSymbol GeneName (List GeneECNumber) (List GeneECName) NondetReturn))
(: dmel_gene_sequence_ontology_annotations! (-> GenePrimaryID GeneSymbol SOTermName SOTermID NondetReturn))
(: dmel_human_orthologs_disease! (-> DmelGeneID DmelGeneSymbol HumanGeneHGNC HumanGeneOMIM HumanGeneSymbol DIOPTScore OMIMPhenotypeIDs OMIMPhenotypeNames NondetReturn))
(: dmel_paralogs! (-> GeneID GeneSymbol ArmScaffold Location Strand ParalogGeneID ParalogGeneSymbol ParalogArmScaffold ParalogLocation ParalogStrand DIOPTScore NondetReturn))
(: dmel_unique_protein_isoforms! (-> GeneID GeneSymbol RepresentativeProtein (List IdenticalProtein) NondetReturn))
(: entity_publication! (-> EntityID EntityName FlyBasePublication PubMedID NondetReturn))
(: fb_synonym! (-> PrimaryFBid OrganismAbbreviation CurrentSymbol CurrentFullname (List FullnameSynonym) (List SymbolSynonym) NondetReturn))
(: fbal_to_fbgn! (-> AlleleID AlleleSymbol GeneID GeneSymbol NondetReturn))
(: fbgn_annotation_ID! (-> GeneSymbol OrganismAbbreviation GeneID (List SecondaryFBgn) AnnotationID (List SecondaryAnnotationID) NondetReturn))
(: fbgn_exons2affy1_overlaps! (-> GeneID (List AffyID1) NondetReturn))
(: fbgn_exons2affy2_overlaps! (-> GeneID (List AffyID2) NondetReturn))
(: fbgn_fbtr_fbpp! (-> GeneID TranscriptID PolypeptideID NondetReturn))
(: fbgn_fbtr_fbpp_expanded! (-> Organism GeneType GeneID GeneSymbol GeneFullname AnnotationID TranscriptType TranscriptID TranscriptSymbol PolypeptideID PolypeptideSymbol NondetReturn))
(: fbgn_gleanr! (-> OrganismAbbreviation GeneSymbol GeneID GLEANR NondetReturn))
(: fbgn_NAseq_Uniprot! (-> GeneSymbol OrganismAbbreviation GeneID NucleotideAccession NABasedProteinAccession UniprotAccession EntrezGene RefSeqTranscripts RefSeqProteins NondetReturn))
(: fbgn_uniprot! (-> GeneID GeneSymbol CGNumber UniprotAccession NondetReturn))
(: fbrf_pmid_pmcid_doi! (-> ReferenceFBrf PMID PMCID DOI PubType MiniRef PMIDAdded NondetReturn))
(: gene_functional_complementation! (-> DmelGeneSymbol DmelGeneID OrthologGeneSymbol OrthologGeneID ReferenceFBrf NondetReturn))
(: gene_genetic_interactions! (-> (List StartingGeneSymbol) (List StartingGeneID) (List InteractingGeneSymbol) (List InteractingGeneID) InteractionType PublicationFBrf NondetReturn))
(: gene_group! (-> FBGroupID FBGroupSymbol FBGroupName ParentFBGroupID ParentFBGroupSymbol GroupMemberFBGene GroupMemberFBGeneSymbol NondetReturn))
(: gene_groups_HGNC! (-> FBGroupID FBGroupSymbol FBGroupName HGNCFamily NondetReturn))
(: gene_map_table! (-> OrganismAbbreviation CurrentSymbol PrimaryFBid RecombinationLoc CytogeneticLoc SequenceLoc NondetReturn))
(: gene_rpkm_matrix! (-> GenePrimaryID GeneSymbol GeneFullName GeneType DataSampleName NondetReturn))
(: gene_rpkm_report! (-> ReleaseID GeneID GeneSymbol ParentLibraryFBlc ParentLibraryName RNASourceFBlc RNASourceName RPKMValue BinValue UniqueExonBaseCount TotalExonBaseCount CountUsed NondetReturn))
(: gene_snapshots! (-> GeneID GeneSymbol GeneName Datestamp GeneSnapshotText NondetReturn))
(: genomic_clone! (-> CloneID OrganismAbbreviation CloneName Accession NondetReturn))
(: genotype_phenotype_data! (-> (List GenotypeSymbols) (List GenotypeIDs) PhenotypeName PhenotypeID (List QualifierNames) (List QualifierIDs) Reference NondetReturn))
(: insertion_mapping! (-> InsertionSymbol FBtiID GenomicLocation Range Orientation EstimatedCytogeneticLocation ObservedCytogeneticLocation NondetReturn))
(: organism_list! (-> Genus Species Abbreviation CommonName NCBITaxon DrosophilidFlag NondetReturn))
(: pathway_group! (-> FBGroupID FBGroupSymbol FBGroupName ParentFBGroupID ParentFBGroupSymbol GroupMemberFBGene GroupMemberFBGeneSymbol NondetReturn))
(: physical_interactions_mitab! (-> (List IDInteractorA) (List IDInteractorB) (List AltIDInteractorA) (List AltIDInteractorB) (List AliasInteractorA) (List AliasInteractorB) (List InteractionDetectionMethod) (List Publication1stAuthor) (List Publication) TaxidInteractorA TaxidInteractorB (List InteractionType) (List SourceDatabase) (List InteractionIdentifier) (List ConfidenceValue) (List ExpansionMethod) (List BiologicalRoleInteractorA) (List BiologicalRoleInteractorB) (List ExperimentalRoleInteractorA) (List ExperimentalRoleInteractorB) (List TypeInteractorA) (List TypeInteractorB) (List XrefInteractorA) (List XrefInteractorB) (List InteractionXref) (List AnnotationInteractorA) (List AnnotationInteractorB) (List InteractionAnnotation) (List HostOrganism) InteractionParameters CreationDate UpdateDate (List ChecksumInteractorA) (List ChecksumInteractorB) InteractionChecksum Negative (List FeatureInteractorA) (List FeatureInteractorB) StoichiometryInteractorA StoichiometryInteractorB (List IdentificationMethodParticipantA) (List IdentificationMethodParticipantB) NondetReturn))
(: pmid_fbgn_uniprot! (-> ReferenceFBrf PMID GeneID UniProtDatabase UniProtID NondetReturn))
(: scRNA-Seq_gene_expression! (-> PubID PubMiniRef ClusteringAnalysisID ClusteringAnalysisName SourceTissueSex SourceTissueStage SourceTissueAnatomy ClusterID ClusterName ClusterCellTypeID ClusterCellTypeName GeneID GeneSymbol MeanExpression Spread NondetReturn))
(: synonym! (-> PrimaryFBid OrganismAbbreviation GeneSymbol CurrentFullname (List FullnameSynonym) (List SymbolSynonym) NondetReturn))
;; do some queries
;; Query: Find the Gene Symbols and Summary Texts for Genes Involved in a Specific Disease
!(query-info "Show the gene symbols and summary texts for genes that are associated with a particular disease model."
(gene-symbols-and-summaries $Disease $GeneSymbol $SummaryText)
(, (disease_model_annotations! $FBgn $GeneSymbol $_ $_ $Disease $_ $_ $_ $_ $_ $_ $_)
(automated_gene_summaries! $FBgn $SummaryText))
)
;; Query: Identify Alleles and Their Phenotypes for a Specific Gene
!(query-info "List all alleles and their associated phenotypes for a given gene symbol."
(alleles-and-phenotypes $GeneSymbol $AlleleSymbol $Phenotype)
(, (fbal_to_fbgn! $_ $AlleleSymbol $_ $GeneSymbol)
(allele_phenotypic! $AlleleSymbol $_ $Phenotype $_))
)
;; Query: Retrieve Gene Interaction Information and Corresponding Publications
!(query-info "Find interactions between genes and the related publications."
(gene-interactions-and-publications $GeneSymbol1 $GeneSymbol2 $InteractionType $Publication)
(, (gene_genetic_interactions! $StartingGeneSymbols $_ $InteractingGeneSymbols $_ $InteractionType $PublicationFBrf)
(fb-member! $GeneSymbol1 $StartingGeneSymbols)
(fb-member! $GeneSymbol2 $InteractingGeneSymbols)
(fbrf_pmid_pmcid_doi! $PublicationFBrf $Publication $_ $_ $_ $_ $_))
)
;; Query: Associate Gene Symbols with Their Orthologous Human Genes and Diseases
!(query-info "Link Drosophila genes to their human orthologs and associated diseases."
(gene-orthologs-and-diseases $OrgGeneSymbol $HumanGeneSymbol $Disease)
(, (dmel_human_orthologs_disease! $_ $OrgGeneSymbol $_ $_ $HumanGeneSymbol $_ $_ $DiseaseIDs)
(fb-member! $DiseaseID $DiseaseIDs)
(disease_model_annotations! $_ $_ $HumanGeneSymbol $_ $Disease $_ $_ $_ $_ $_ $_ $_))
)
;; Query: Count the Number of Known RNA Processing Related Genes and Select Those with Less Than 2 Instances
!(query-info "Find the number of known RNA processing related genes and select those with less than 2 instances."
(genes-rna-process-<-two $GeneSymbol $RNAProcess $NumberOf)
(, (gene_rpkm_matrix! $GeneSymbol $_ $_ $RNAProcess $_)
(number-of (gene_rpkm_matrix! $GeneSymbol $_ $_ $RNAProcess $_) $NumberOf)
(< $NumberOf 2))
)
;; Query: Identify Genes with More Than 4 Physical Interactions
!(query-info "Identify genes that have more than 4 physical interactions."
(genes-physical-interactions-more-than-four $GeneSymbol $PhysicalInteraction $NumberOf)
(, (physical_interactions_mitab! $GeneSymbol $_ $_ $PhysicalInteraction $_ $_ $_)
(number-of (physical_interactions_mitab! $GeneSymbol $_ $_ $PhysicalInteraction $_ $_ $_) $NumberOf)
(> $NumberOf 4))
)
;; Query: Count Genes Associated with Specific Diseases and Select Those with More Than 3 Associations
!(query-info "Count genes associated with specific diseases and select those with more than 3 associations."
(genes-disease-associations-more-than-three $GeneSymbol $Disease $NumberOf)
(, (disease_model_annotations! $GeneSymbol $_ $_ $_ $_ $_ $_ $Disease $_ $_ $_)
(number-of (disease_model_annotations! $GeneSymbol $_ $_ $_ $_ $_ $_ $Disease $_ $_ $_) $NumberOf)
(> $NumberOf 3))
)
;; Query: Find the Number of Gene Synonyms and Select Those with Less Than 5 Synonyms
!(query-info "Find the number of synonyms for genes and select those with less than 5 synonyms."
(genes-synonyms-<-five $GeneSymbol $Synonym $NumberOf)
(, (fb_synonym! $GeneSymbol $_ $_ $Synonym $_)
(number-of (fb_synonym! $GeneSymbol $_ $_ $Synonym $_) $NumberOf)
(< $NumberOf 5))
)
;; Query: Count Genes Involved in Gene Regulation and Exclude Those with Less Than 2 Instances
!(query-info "Count genes involved in gene regulation and exclude those with less than 2 instances."
(genes-regulation-naf-<-two $GeneSymbol $GeneRegulation $NumberOf)
(, (gene_functional_complementation! $GeneSymbol $_ $_ $GeneRegulation $_ $_)
(number-of (gene_functional_complementation! $GeneSymbol $_ $_ $GeneRegulation $_ $_) $NumberOf)
(naf (< $NumberOf 2)))
)
;; Query: Identify Genes with Allelic Variants and Select Those with More Than 6 Variants
!(query-info "Identify genes with allelic variants and select those with more than 6 variants."
(genes-allelic-variants-more-than-six $GeneSymbol $AlleleSymbol $NumberOf)
(, (allele_genetic_interactions! $AlleleSymbol $_ $_ $_ $GeneSymbol)
(number-of (allele_genetic_interactions! $AlleleSymbol $_ $_ $_ $GeneSymbol) $NumberOf)
(> $NumberOf 6))
)
;; Query: Find All Known Paralogs of a Specific Gene and Their Expression Levels
!(query-info "Display all paralogs of a given gene and their mean expression levels."
(gene-paralogs-and-expression $GeneSymbol $ParalogSymbol $MeanExpression)
(, (dmel_paralogs! $_ $GeneSymbol $_ $ParalogSymbol $_)
(scRNA-Seq_gene_expression! $ParalogSymbol $_ $MeanExpression $_))
)
;; Query: Correlate Gene Expression with Specific Stages of Tissue Development
!(query-info "Find genes with their expression levels at various stages of tissue development."
(gene-expression-by-stage $GeneSymbol $TissueStage $MeanExpression)
(, (scRNA-Seq_gene_expression! $_ $_ $_ $_ $TissueStage $_ $MeanExpression $_)
(dmel_gene_sequence_ontology_annotations! $GeneSymbol $_ $_))
)
;; Query: Associate Genetic Map Positions with Corresponding Enzyme Activities
!(query-info "Relate genetic map positions to the enzyme activities of associated genes."
(map-position-and-enzyme-activity $MapPosition $GeneSymbol $EnzymeActivity)
(, (cyto-genetic-seq! $_ $MapPosition $_ $_)
(Dmel_enzyme! $GeneSymbol $_ $_ $_ $EnzymeActivity))
)
;; Query: Link Alleles with Their Genetic and Physical Interactions
!(query-info "Connect alleles to their genetic interactions and the physical interactions they are involved in."
(allele-genetic-and-physical-interactions $AlleleSymbol $GeneticInteraction $PhysicalInteraction)
(, (allele_genetic_interactions! $AlleleSymbol $_ $GeneticInteraction $_)
(physical_interactions_mitab! $_ $_ $_ $_ $_ $PhysicalInteraction))
)
;; Query: Find cDNA Clones Related to Specific Diseases
!(query-info "Identify cDNA clones linked to genes associated with certain diseases."
(cDNA-clones-and-diseases $CloneName $Disease)
(, (cDNA_clone! $_ $_ $CloneName $_)
(disease_model_annotations! $_ $_ $_ $_ $Disease $_)
)
)
;; Query: Determine Disease Models Based on Specific Gene Sequences
!(query-info "Ascertain disease models associated with particular gene sequences."
(gene-sequences-and-disease-models $Sequence $DiseaseModel)
(, (dmel_gene_sequence_ontology_annotations! $_ $_ $_ $Sequence)
(disease_model_annotations! $_ $_ $_ $_ $DiseaseModel $_))
)
;; Query: Associate Gene Symbols with Known Allele Phenotypes and Interactions
!(query-info "Connect gene symbols with the phenotypes and interactions of their alleles."
(gene-alleles-phenotypes-and-interactions $GeneSymbol $AllelePhenotype $Interaction)
(, (fbal_to_fbgn! $_ $_ $_ $GeneSymbol)
(allele_phenotypic! $_ $_ $AllelePhenotype $_)
(allele_genetic_interactions! $_ $AllelePhenotype $Interaction $_))
)
;; Query: Link Gene Symbols with Their Enzyme Functions and Synonyms
!(query-info "Relate gene symbols to their enzyme functions and any known synonyms."
(gene-enzyme-functions-and-synonyms $GeneSymbol $EnzymeFunction $Synonym)
(, (Dmel_enzyme! $GeneSymbol $_ $_ $EnzymeFunction $_)
(fb_synonym! $_ $_ $GeneSymbol $_ $Synonym)
)
)
;; Query: Associate Gene Expression with Specific Cell Types
!(query-info "Correlate gene expression levels with specific cell types."
(gene-expression-and-cell-type $GeneSymbol $CellType $ExpressionLevel)
(, (scRNA-Seq_gene_expression! $_ $_ $_ $_ $_ $_ $CellType $_ $ExpressionLevel)
(dmel_gene_sequence_ontology_annotations! $GeneSymbol $_ $_))
)
;; Query: Identify Genes with Specific Protein Isoforms and Their Disease Associations
!(query-info "Find genes that have specific protein isoforms and their links to diseases."
(genes-protein-isoforms-and-diseases $GeneSymbol $ProteinIsoform $Disease)
(, (dmel_unique_protein_isoforms! $_ $GeneSymbol $_ $ProteinIsoform)
(disease_model_annotations! $_ $_ $_ $_ $_ $_ $_ $_ $_ $Disease))
)
;; Query: Relate Genomic Clones to Their Expression in Different Tissues
!(query-info "Connect genomic clones to their expression profiles in various tissues."
(clones-and-tissue-expression $CloneName $TissueType $ExpressionLevel)
(, (genomic_clone! $_ $_ $CloneName $_)
(gene_rpkm_report! $_ $_ $_ $_ $TissueType $_ $ExpressionLevel))
)
;; Query: Find Genes Involved in Specific Pathways and Their Genetic Interactions
!(query-info "Identify genes that are part of certain pathways and their genetic interactions."
(genes-in-pathways-and-interactions $Pathway $GeneSymbol $Interaction)
(, (pathway_group! $_ $_ $Pathway $_)
(gene_genetic_interactions! $_ $GeneSymbol $_ $Interaction $_))
)
;; Query: Determine the Expression of Specific Genes in Different Tissues and Stages
!(query-info "Find the mean expression of specific genes across different tissues and developmental stages."
(gene-expression-across-tissues-and-stages $GeneSymbol $Tissue $Stage $MeanExpression)
(, (scRNA-Seq_gene_expression! $PubID $_ $_ $_ $Tissue $Stage $_ $ClusterID $_ $_ $_ $GeneID $GeneSymbol $MeanExpression $_)
(fbgn_annotation_ID! $GeneSymbol $_ $GeneID $_ $_ $_ $_))
)
;; Query: Relate cDNA Clones to Their Corresponding Genes and Accessions
!(query-info "Link cDNA clones to their corresponding genes and accessions."
(cdna-clone-gene-link $CloneName $GeneSymbol $CDNAaccession)
(, (cDNA_clone! $_ $_ $CloneName $_ $CDNAaccession $_)
(fbgn_annotation_ID! $GeneSymbol $_ $_ $_ $_ $_))
)
;; Query: Associate Alleles with Genetic Interactions and References
!(query-info "Find genetic interactions involving specific alleles and their references."
(allele-genetic-interactions-and-references $AlleleSymbol $Interaction $Reference)
(, (allele_genetic_interactions! $AlleleSymbol $_ $Interaction $_ $Reference)
(fbrf_pmid_pmcid_doi! $Reference $_ $_ $_ $_ $_ $_))
)
;; Query: Explore Paralogous Genes and Their Genomic Locations
!(query-info "Identify paralogous genes and their genomic locations."
(gene-paralogs-and-locations $GeneSymbol $ParalogGeneSymbol $Location)
(, (dmel_paralogs! $GeneID $GeneSymbol $_ $Location $_ $_ $Paralog_FBgn $Paralog_GeneSymbol $_ $_ $_ $_)
(fbgn_annotation_ID! $GeneSymbol $_ $GeneID $_ $_ $_))
)
;; Query: Trace Genes to Their Synonyms and Organism Abbreviations
!(query-info "Trace genes to their synonyms and organism abbreviations."
(gene-synonyms-and-organisms $GeneSymbol $Synonym $OrganismAbbreviation)
(, (fb_synonym! $_ $OrganismAbbreviation $GeneSymbol $_ $Synonym $_ $_)
(gene_map_table! $OrganismAbbreviation $GeneSymbol $_ $_ $_ $_ $_))
)
;; Query: Link Gene Annotations with Corresponding Protein Accessions
!(query-info "Connect gene annotations with their respective protein accessions."
(gene-annotations-and-protein-accessions $GeneSymbol $AnnotationID $ProteinAccession)
(, (fbgn_annotation_ID! $GeneSymbol $_ $_ $AnnotationID $_ $_)
(fbgn_NAseq_Uniprot! $GeneSymbol $_ $_ $_ $_ $ProteinAccession $_ $_ $_))
)
;; Query: Correlate Gene Expression with Specific RNA and Protein Data
!(query-info "Correlate gene expression levels with RNA and protein data."
(gene-expression-rna-protein-correlation $GeneSymbol $ExpressionValue $RNAaccession $ProteinAccession)
(, (gene_rpkm_matrix! $_ $GeneSymbol $_ $_ $ExpressionValue $_)
(fbgn_NAseq_Uniprot! $GeneSymbol $_ $_ $RNAaccession $_ $ProteinAccession $_ $_ $_))
)
;; Query: Associate Genes with Disease Models and Relevant Alleles
!(query-info "Associate genes with disease models and the alleles used in these models."
(genes-disease-models-and-alleles $GeneSymbol $Disease $AlleleSymbol)
(, (disease_model_annotations! $GeneID $GeneSymbol $_ $_ $Disease $_ $_ $_ $AlleleSymbol $_ $_ $_ $_)
(fbal_to_fbgn! $GeneID $AlleleSymbol $_ $GeneSymbol))
)
;; Query: Match Genes with Their Corresponding Publication References
!(query-info "Match genes with their corresponding publication references."
(gene-publication-matches $GeneSymbol $Publication)
(, (fbgn_annotation_ID! $GeneSymbol $_ $_ $_ $_ $_)
(entity_publication! $_ $GeneSymbol $Publication $_))
)
;; Query: Find Alleles and Their Interactions with Genes
!(query-info "Find alleles and their interactions with specific genes."
(alleles-and-gene-interactions $AlleleSymbol $GeneSymbol $Interaction)
(, (allele_genetic_interactions! $AlleleSymbol $_ $Interaction $_ $_)
(fbal_to_fbgn! $_ $AlleleSymbol $_ $GeneSymbol))
)
;; Query: Associate Genes with Pathways, Disease Models, and Human Orthologs
!(query-info "Link genes to their associated pathways, disease models, and human orthologs."
(genes-pathways-diseases-orthologs $GeneSymbol $Pathway $Disease $HumanOrtholog)
(, (gene_groups_HGNC! $GeneSymbol $_ $_ $Pathway)
(disease_model_annotations! $GeneSymbol $_ $_ $_ $Disease)
(dmel_human_orthologs_disease! $GeneSymbol $_ $_ $HumanOrtholog))
)
;; Query: Link Alleles to Phenotypes, Genetic Interactions, and Publications
!(query-info "Connect alleles to their phenotypes, genetic interactions, and related publications."
(alleles-phenotypes-interactions-publications $AlleleSymbol $Phenotype $Interaction $Publication)
(, (allele_phenotypic! $AlleleSymbol $_ $Phenotype)
(allele_genetic_interactions! $AlleleSymbol $_ $Interaction)
(fbrf_pmid_pmcid_doi! $Interaction $Publication $_ $_ $_))
)
;; Query: Correlate Gene Expressions with cDNA Clones and Protein Accessions
!(query-info "Correlate gene expressions with corresponding cDNA clones and protein accessions."
(gene-expression-cdna-protein $GeneSymbol $ExpressionValue $CloneName $ProteinAccession)
(, (gene_rpkm_matrix! $GeneSymbol $_ $_ $ExpressionValue)
(cDNA_clone! $_ $_ $CloneName $_)
(fbgn_NAseq_Uniprot! $GeneSymbol $_ $_ $ProteinAccession))
)
;; Query: Determine Gene Functions and Map them to Genetic and Physical Interactions
!(query-info "Determine gene functions and map them to genetic and physical interactions."
(gene-functions-genetic-physical-interactions $GeneSymbol $Function $GeneticInteraction $PhysicalInteraction)
(, (automated_gene_summaries! $GeneSymbol $Function)
(gene_genetic_interactions! $GeneSymbol $_ $_ $GeneticInteraction)
(physical_interactions_mitab! $_ $_ $GeneSymbol $PhysicalInteraction))
)
;; Query: Explore Gene Synonyms, Genetic Map Positions, and Disease Associations
!(query-info "Explore gene synonyms, genetic map positions, and disease associations."
(gene-synonyms-map-diseases $GeneSymbol $Synonym $MapPosition $Disease)
(, (fb_synonym! $GeneSymbol $_ $_ $Synonym)
(cyto-genetic-seq! $GeneSymbol $_ $_ $MapPosition)
(disease_model_annotations! $GeneSymbol $_ $_ $_ $Disease))
)
;; Query: Associate Gene Expression with Cell Types and Developmental Stages
!(query-info "Associate gene expression with specific cell types and developmental stages."
(gene-expression-cell-types-stages $GeneSymbol $ExpressionValue $CellType $Stage)
(, (gene_rpkm_matrix! $GeneSymbol $_ $_ $ExpressionValue)
(scRNA-Seq_gene_expression! $_ $_ $_ $_ $Stage $_ $CellType))
)
;; Query: Link Genomic Clones to Genes, Proteins, and Synonyms
!(query-info "Link genomic clones to their corresponding genes, proteins, and synonyms."
(genomic-clone-gene-protein-synonym $CloneName $GeneSymbol $ProteinAccession $Synonym)
(, (genomic_clone! $CloneName $_ $_ $_)
(fbgn_NAseq_Uniprot! $GeneSymbol $_ $_ $ProteinAccession)
(fb_synonym! $_ $_ $GeneSymbol $Synonym))
)
;; Query: Relate Gene Snapshots to Disease Models and Human Orthologs
!(query-info "Relate gene snapshots to disease models and their human orthologs."
(gene-snapshots-diseases-orthologs $GeneSymbol $SnapshotText $Disease $HumanOrtholog)
(, (gene_snapshots! $GeneSymbol $_ $_ $SnapshotText)
(disease_model_annotations! $GeneSymbol $_ $_ $_ $Disease)
(dmel_human_orthologs_disease! $GeneSymbol $_ $_ $HumanOrtholog))
)
;; Query: Connect Genes to Their Enzymatic Functions and Disease Models
!(query-info "Connect genes to their enzymatic functions and associated disease models."
(genes-enzymes-diseases $GeneSymbol $EnzymeFunction $Disease)
(, (Dmel_enzyme! $GeneSymbol $_ $_ $_ $EnzymeFunction)
(disease_model_annotations! $GeneSymbol $_ $_ $_ $Disease))
)
;; Query: Associate Pathway Groups with Gene Functions and Physical Interactions
!(query-info "Associate pathway groups with gene functions and physical interactions."
(pathway-gene-function-physical-interaction $Pathway $GeneFunction $PhysicalInteraction)
(, (pathway_group! $Pathway $_ $_ $_)
(automated_gene_summaries! $_ $GeneFunction)
(physical_interactions_mitab! $_ $_ $_ $PhysicalInteraction))
)
;; Query: Associate Disease Models with Gene Transcripts, Protein Isoforms, Gene Summaries, and Snapshots
!(query-info "Link disease model annotations with corresponding gene transcripts, unique protein isoforms, the best gene summaries, and gene snapshots."
(gene-disease-models-transcripts-proteins-summaries-snapshots $GeneID $GeneSymbol $ProteinID $GeneSummaryID $GeneSnapshotID)
(, (disease_model_annotations! $GeneID $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_)
(fbgn_fbtr_fbpp_expanded! $TranscriptType $TranscriptID $GeneID $GeneSymbol $GeneFullName $AnnotationID $_ $_ $_ $_ $_)
(dmel_unique_protein_isoforms! $ProteinID $GeneSymbol $ProteinSymbol $_)
(best_gene_summary! $GeneSummaryID $GeneSymbol $SummarySource $SummaryText)
(gene_snapshots! $GeneSnapshotID $GeneSymbol $GeneName $Datestamp $SnapshotText))
)
;; Query: Link Paralogous Genes with Gene Mapping, Transcripts, Protein Isoforms, and Summaries
!(query-info "Connect paralogous genes to their gene mapping, transcripts, protein isoforms, and gene summaries."
(paralogs-gene-mapping-transcripts-proteins-summaries $GeneID $GeneSymbol $ParalogGeneID $MapID $ProteinID)
(, (dmel_paralogs! $GeneID $GeneSymbol $Arm $Location $Strand $ParalogGeneID $ParalogGeneSymbol $_ $_ $_ $_)
(gene_map_table! $MapID $OrganismAbbreviation $GeneID $RecombinationLoc $CytogeneticLoc $SequenceLoc)
(fbgn_fbtr_fbpp_expanded! $TranscriptType $TranscriptID $TranscriptSymbol $MapID $_ $_ $_ $_ $_ $_)
(dmel_unique_protein_isoforms! $ProteinID $ProteinSymbol $TranscriptSymbol $_)
(best_gene_summary! $GeneSummaryID $ProteinSymbol $SummarySource $SummaryText))
)
;; Query: Correlate Expanded Gene Transcripts with Protein Isoforms, Paralogs, Gene Mapping, and Synonyms
!(query-info "Associate expanded gene transcripts with corresponding protein isoforms, paralogs, gene mapping data, and synonyms."
(transcripts-proteins-paralogs-mapping-synonyms $GeneID $TranscriptID $ProteinID $ParalogGeneID $MapID)
(, (fbgn_fbtr_fbpp_expanded! $GeneID $TranscriptType $TranscriptID $GeneSymbol $GeneFullName $AnnotationID $_ $_ $_ $_ $_)
(dmel_unique_protein_isoforms! $ProteinID $ProteinSymbol $TranscriptSymbol $_)
(dmel_paralogs! $ParalogGeneID $ProteinSymbol $_ $_ $_ $_ $_ $_ $_ $_ $_)
(gene_map_table! $MapID $OrganismAbbreviation $ParalogGeneID $RecombinationLoc $CytogeneticLoc $SequenceLoc)
(synonym! $SynonymID $MapID $CurrentSymbol $CurrentFullName $_ $_))
)
(was (number-of
(, (fbgn_fbtr_fbpp_expanded! $GeneID $TranscriptType $TranscriptID $GeneSymbol $GeneFullName $AnnotationID $_ $_ $_ $_ $_)
(dmel_unique_protein_isoforms! $ProteinID $ProteinSymbol $TranscriptSymbol $_)
(dmel_paralogs! $ParalogGeneID $ProteinSymbol $_ $_ $_ $_ $_ $_ $_ $_ $_)
(gene_map_table! $MapID $OrganismAbbreviation $ParalogGeneID $RecombinationLoc $CytogeneticLoc $SequenceLoc)
(synonym! $SynonymID $MapID $CurrentSymbol $CurrentFullName $_ $_))))
;; Query: Connect Gene Mapping with Expanded Transcripts, Protein Isoforms, Gene Summaries, and Basic Transcripts
!(query-info "Link gene mapping data with expanded transcripts, unique protein isoforms, gene summaries, and basic transcript information."
(mapping-transcripts-proteins-summaries $MapID $GeneSymbol $TranscriptID $ProteinID $GeneSummaryID)
(, (gene_map_table! $MapID $OrganismAbbreviation $GeneSymbol $RecombinationLoc $CytogeneticLoc $SequenceLoc)
(fbgn_fbtr_fbpp_expanded! $TranscriptType $TranscriptID $TranscriptSymbol $OrganismAbbreviation $_ $_ $_ $_ $_ $_)
(dmel_unique_protein_isoforms! $ProteinID $ProteinSymbol $TranscriptSymbol $_)
(best_gene_summary! $GeneSummaryID $ProteinSymbol $SummarySource $SummaryText)
(fbgn_fbtr_fbpp! $GeneSummaryID $_ $_))
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Query: Associate Gene Expression with Developmental Stages and Publications
!(query-info "Link gene expression data to specific developmental stages and corresponding publications."
(gene-expression-stages-publications $GeneID $ExpressionValue $Stage $Publication)
(, (gene_rpkm_report! $GeneID $ExpressionValue $_ $_ $_ $Stage $_ $_ $_ $_ $_ $_ $_ $_)
(fbrf_pmid_pmcid_doi! $_ $Publication $_ $_ $_ $_ $_ $_))
)
;; Query: Link Gene Functional Data with Enzymatic Activities and Disease Models
!(query-info "Connect gene functional data with enzymatic activities and their relevance to disease models."
(gene-function-enzyme-disease $GeneSymbol $Function $EnzymeActivity $Disease)
(, (automated_gene_summaries! $GeneSymbol $Function)
(Dmel_enzyme! $GeneSymbol $_ $_ $_ $_ $_ $_ $_ $_ $_ $_)
(disease_model_annotations! $_ $GeneSymbol $_ $_ $_ $Disease $_ $_ $_ $_ $_ $_))
)
;; Query: Relate Genes to Their Allelic Variants and Phenotypic Effects
!(query-info "Relate genes to their allelic variants and the resulting phenotypic effects."
(genes-alleles-phenotypes $GeneSymbol $AlleleSymbol $Phenotype)
(, (fbal_to_fbgn! $_ $AlleleSymbol $_ $GeneSymbol)
(allele_phenotypic! $AlleleSymbol $_ $Phenotype $_))
)
;; Query: Correlate Genes with their Physical Interactions and Pathway Involvements
!(query-info "Correlate genes with their physical interactions and pathway involvements."
(genes-physical-interactions-pathways $GeneID $PhysicalInteraction $Pathway)
(, (physical_interactions_mitab! $GeneID $_ $_ $PhysicalInteraction $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_)
(pathway_group! $Pathway $_ $_ $_ $_ $_ $GeneID $_ $_))
)
;; Query: Connect Genes with Disease Annotations and Relevant Publication Data
!(query-info "Connect genes with disease annotations and relevant publication data."
(genes-disease-annotations-publications $GeneSymbol $DiseaseAnnotation $Publication)
(, (disease_model_annotations! $_ $GeneSymbol $_ $_ $_ $DiseaseAnnotation $_ $_ $_ $_ $_ $_ $_ $_)
(fbrf_pmid_pmcid_doi! $_ $Publication $_ $_ $_ $_ $_ $_))
)
;; Query: Associate Gene Sequences with Synonyms and Protein Isoforms
!(query-info "Associate gene sequences with their synonyms and protein isoforms."
(gene-sequences-synonyms-proteins $GeneID $Synonym $ProteinIsoform)
(, (dmel_gene_sequence_ontology_annotations! $GeneID $_ $_ $_)
(fb_synonym! $_ $_ $GeneID $_ $Synonym $_)
(dmel_unique_protein_isoforms! $_ $_ $GeneID $ProteinIsoform $_))
)
;; Query: Link Genotype Data with Phenotypes and Corresponding References
!(query-info "Link genotype data with phenotypes and their corresponding references."
(genotype-phenotypes-references $GenotypeSymbols $Phenotype $Reference)
(, (genotype_phenotype_data! $GenotypeSymbols $_ $Phenotype $_ $_ $_ $_ $Reference $_)
(fbrf_pmid_pmcid_doi! $Reference $_ $_ $_ $_ $_ $_ $_))
)
;; Query: Correlate Gene Snapshots with Their Enzymatic Functions and Disease Models
!(query-info "Correlate gene snapshots with their enzymatic functions and disease models."
(gene-snapshots-enzymes-diseases $GeneSymbol $SnapshotText $EnzymeFunction $Disease)
(, (gene_snapshots! $GeneSymbol $_ $_ $SnapshotText $_)
(Dmel_enzyme! $GeneSymbol $_ $_ $_ $_ $_ $_ $_ $_)
(disease_model_annotations! $_ $GeneSymbol $_ $_ $_ $Disease $_ $_ $_ $_ $_ $_))
)
;; Query: Associate Genes with Their cDNA Clones and Disease Models
!(query-info "Associate genes with their cDNA clones and relevant disease models."
(genes-cdna-disease-models $GeneSymbol $CloneName $Disease)
(, (cDNA_clone! $_ $_ $CloneName $_ $_ $_)
(gene_map_table! $_ $GeneSymbol $_ $_ $_ $_ $_)
(disease_model_annotations! $_ $GeneSymbol $_ $_ $_ $Disease $_ $_ $_ $_ $_ $_))
)
;; Query: Connect Genes to Publications and Allelic Interactions
!(query-info "Connect genes to relevant publications and their allelic interactions."
(genes-publications-allelic-interactions $GeneSymbol $Publication $AlleleInteraction)
(, (entity_publication! $_ $GeneSymbol $Publication $_)
(allele_genetic_interactions! $_ $_ $AlleleInteraction $_ $GeneSymbol))
)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;ORs ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Query: Identify Genes Either Involved in Physical Interactions or Associated with Specific Diseases
!(query-info "Find genes that are either involved in physical interactions or associated with specific diseases."
(genes-physical-or-disease $GeneSymbol $PhysicalInteraction $Disease)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (physical_interactions_mitab! $GeneSymbol $_ $_ $PhysicalInteraction $_ $_ $_)
(disease_model_annotations! $GeneSymbol $_ $_ $_ $_ $_ $_ $Disease $_ $_ $_)))
)
;; Query: Retrieve Gene Snapshots or Enzymatic Functions for Specific Genes
!(query-info "Get gene snapshots or enzymatic functions for specific genes."
(gene-snapshots-or-enzymes $GeneSymbol $SnapshotText $EnzymeFunction)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (gene_snapshots! $GeneSymbol $_ $_ $SnapshotText $_)
(Dmel_enzyme! $GeneSymbol $_ $_ $_ $EnzymeFunction $_ $_ $_)))
)
;; Query: Find Genes with Either cDNA Clones or Related to Specific Pathways
!(query-info "Identify genes that have cDNA clones or are related to specific pathways."
(genes-cdna-or-pathways $GeneSymbol $CloneName $Pathway)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (cDNA_clone! $CloneName $_ $GeneSymbol $_ $_)
(pathway_group! $GeneSymbol $_ $_ $_ $Pathway $_ $_)))
)
;; Query: Associate Genes with Synonyms or Protein Isoforms
!(query-info "Associate genes with either their synonyms or protein isoforms."
(genes-synonyms-or-proteins $GeneSymbol $Synonym $ProteinIsoform)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (fb_synonym! $GeneSymbol $_ $_ $Synonym $_)
(dmel_unique_protein_isoforms! $GeneSymbol $_ $_ $ProteinIsoform $_)))
)
;; Query: Link Alleles to Phenotypes or Genetic Interactions
!(query-info "Link alleles to their phenotypes or to their genetic interactions."
(alleles-phenotypes-or-interactions $AlleleSymbol $Phenotype $Interaction)
(, (fbal_to_fbgn! $AlleleSymbol $_ $_ $_)
(or (allele_phenotypic! $AlleleSymbol $_ $Phenotype $_)
(allele_genetic_interactions! $AlleleSymbol $_ $Interaction $_)))
)
;; Query: Find Genes Involved in RNA Processing or Gene Regulation
!(query-info "Find genes involved in RNA processing or gene regulation."
(genes-rna-or-regulation $GeneSymbol $RNAProcess $GeneRegulation)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (gene_rpkm_matrix! $GeneSymbol $_ $_ $RNAProcess $_)
(gene_functional_complementation! $GeneSymbol $_ $_ $GeneRegulation $_)))
)
;; Query: Retrieve Publications Related to Genes or Their Allelic Variants
!(query-info "Retrieve publications related to genes or their allelic variants."
(publications-genes-or-alleles $GeneSymbol $Publication $AlleleSymbol)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (entity_publication! $Publication $_ $GeneSymbol $_)
(allele_genetic_interactions! $AlleleSymbol $_ $_ $_ $GeneSymbol)))
)
;; Query: Correlate Genes with Their Expression in Tissues or During Specific Stages
!(query-info "Correlate genes with their expression in tissues or during specific developmental stages."
(genes-expression-tissues-or-stages $GeneSymbol $Tissue $Stage)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(or (scRNA-Seq_gene_expression! $_ $_ $_ $_ $Tissue $Stage $_ $_)
(gene_rpkm_report! $GeneSymbol $_ $_ $_ $_ $_ $_ $Stage $_)))
)
;; Query: Find Genes Involved in RNA Processing but Not in Gene Regulation
!(query-info "Identify genes involved in RNA processing but naf in gene regulation."
(genes-rna-naf-regulation $GeneSymbol $RNAProcess)
(, (gene_rpkm_matrix! $GeneSymbol $_ $_ $RNAProcess $_)
(naf (gene_functional_complementation! $GeneSymbol $_ $_ $_ $_ $_)))
)
;; Query: Retrieve Publications Related to Specific Genes but Not Their Allelic Variants
!(query-info "Retrieve publications related to specific genes but naf their allelic variants."
(publications-genes-naf-alleles $GeneSymbol $Publication)
(, (entity_publication! $Publication $_ $GeneSymbol $_)
(naf (allele_genetic_interactions! $_ $_ $_ $GeneSymbol)))
)
;; Query: Identify Genes with cDNA Clones but Not Involved in Specific Pathways
!(query-info "Identify genes that have cDNA clones but are naf involved in specific pathways."
(genes-cdna-naf-pathways $GeneSymbol $CloneName)
(, (cDNA_clone! $CloneName $_ $GeneSymbol $_ $_ $_)
(naf (pathway_group! $GeneSymbol $_ $_ $_ $_ $_ $_)))
)
;; Query: Associate Genes with Synonyms but Exclude Certain Protein Isoforms
!(query-info "Associate genes with their synonyms but exclude certain protein isoforms."
(genes-synonyms-naf-proteins $GeneSymbol $Synonym)
(, (fb_synonym! $GeneSymbol $_ $_ $Synonym $_)
(naf (dmel_unique_protein_isoforms! $GeneSymbol $_ $_ $_)))
)
;; Query: Link Alleles to Phenotypes but Exclude Specific Genetic Interactions
!(query-info "Link alleles to their phenotypes but exclude specific genetic interactions."
(alleles-phenotypes-naf-interactions $AlleleSymbol $Phenotype)
(, (allele_phenotypic! $AlleleSymbol $_ $Phenotype $_)
(naf (allele_genetic_interactions! $AlleleSymbol $_ $_ $_)))
)
;; Query: Find Genes Involved in Physical Interactions but Not Associated with Diseases
!(query-info "Find genes involved in physical interactions but naf associated with specific diseases."
(genes-physical-naf-disease $GeneSymbol $PhysicalInteraction)
(, (physical_interactions_mitab! $GeneSymbol $_ $_ $PhysicalInteraction $_ $_ $_ $_ $_)
(naf (disease_model_annotations! $GeneSymbol $_ $_ $_ $_ $_ $_ $_ $_ $_)))
)
;; Query: Retrieve Gene Snapshots but Exclude Those Related to Enzymatic Functions
!(query-info "Retrieve gene snapshots but exclude those related to enzymatic functions."
(gene-snapshots-naf-enzymes $GeneSymbol $SnapshotText)
(, (gene_snapshots! $GeneSymbol $_ $_ $SnapshotText $_)
(naf (Dmel_enzyme! $GeneSymbol $_ $_ $_ $_ $_ $_ $_)))
)
;; Query: Correlate Genes with Expression in Tissues but Not During Specific Stages
!(query-info "Correlate genes with their expression in tissues but naf during specific developmental stages."
(genes-expression-tissues-naf-stages $GeneSymbol $Tissue)
(, (scRNA-Seq_gene_expression! $_ $_ $_ $_ $Tissue $_ $_ $_ $GeneSymbol $_ $_)
(naf (gene_rpkm_report! $GeneSymbol $_ $_ $_ $_ $_ $_ $_ $_ $_ $_ $_)))
)
;; Query: Find Genes with Specific Transcripts or Protein Isoforms but Not Involved in Certain Pathways
!(query-info "Identify genes that have specific transcripts or protein isoforms but are naf involved in certain pathways."
(genes-transcripts-proteins-naf-pathways $GeneSymbol $TranscriptID $ProteinIsoform $ExcludedPathway)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(, (or (fbgn_fbtr_fbpp! $GeneSymbol $TranscriptID $_ $_ $_)
(dmel_unique_protein_isoforms! $GeneSymbol $_ $ProteinIsoform $_))
(naf (pathway_group! $GeneSymbol $_ $_ $_ $ExcludedPathway $_ $_))))
)
;; Query: Retrieve Gene Snapshots or Allelic Variants but Exclude Genes with Certain Phenotypes
!(query-info "Retrieve gene snapshots or allelic variants but exclude genes associated with certain phenotypes."
(gene-snapshots-alleles-naf-phenotypes $GeneSymbol $SnapshotText $AlleleSymbol $ExcludedPhenotype)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(, (or (gene_snapshots! $GeneSymbol $_ $SnapshotText $_)
(allele_genetic_interactions! $AlleleSymbol $_ $_ $_ $GeneSymbol))
(naf (allele_phenotypic! $AlleleSymbol $_ $ExcludedPhenotype $_))))
)
;; Query: Link Genes to Physical Interactions or Publications but Not to Specific Disease Models
!(query-info "Link genes to physical interactions or relevant publications but naf to specific disease models."
(genes-interactions-publications-naf-disease $GeneSymbol $PhysicalInteraction $Publication $ExcludedDisease)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(, (or (physical_interactions_mitab! $GeneSymbol $_ $_ $PhysicalInteraction $_ $_)
(entity_publication! $Publication $_ $GeneSymbol $_))
(naf (disease_model_annotations! $GeneSymbol $_ $_ $_ $_ $_ $_ $ExcludedDisease))))
)
;; Query: Associate Genes with cDNA Clones or Enzymatic Functions but Exclude Certain Synonyms
!(query-info "Associate genes with cDNA clones or enzymatic functions but exclude certain synonyms."
(genes-cdna-enzymes-naf-synonyms $GeneSymbol $CloneName $EnzymeFunction $ExcludedSynonym)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(, (or (cDNA_clone! $CloneName $_ $GeneSymbol $_)
(Dmel_enzyme! $GeneSymbol $_ $_ $EnzymeFunction $_))
(naf (fb_synonym! $GeneSymbol $_ $_ $ExcludedSynonym $_))))
)
;; Query: Find Genes Involved in RNA Processing or Gene Regulation but Not Linked to Specific Protein Accessions
!(query-info "Find genes involved in RNA processing or gene regulation but naf linked to specific protein accessions."
(genes-rna-regulation-naf-proteins $GeneSymbol $RNAProcess $GeneRegulation $ExcludedProteinAccession)
(, (gene_map_table! $GeneSymbol $_ $_ $_ $_ $_)
(, (or (gene_rpkm_matrix! $GeneSymbol $_ $_ $RNAProcess $_)
(gene_functional_complementation! $GeneSymbol $_ $_ $GeneRegulation $_))
(naf (fbgn_NAseq_Uniprot! $GeneSymbol $_ $_ $ExcludedProteinAccession $_ $_ $_)))))
;; Rust only:
!(metta_learner::vspace-main)
(arity allele_genetic_interactions 4)
(arity automated_gene_summaries 3)
(arity best_gene_summary 4)
(arity cDNA_clone_data 6)
(arity cyto-genetic-seq 4)
(arity disease_model_annotations 12)
(arity Dmel_enzyme_data 11)
(arity dmel_gene_sequence_ontology_annotations 4)
(arity dmel_human_orthologs_disease 8)
(arity dmel_paralogs 11)
(arity dmel_unique_protein_isoforms 4)
(arity entity_publication 4)
(arity fb_synonym 6)
(arity fbal_to_fbgn 4)
(arity fbgn_annotation_ID 6)
(arity fbgn_exons2affy1_overlaps 2)
(arity fbgn_exons2affy2_overlaps 2)
(arity fbgn_fbtr_fbpp 3)
(arity fbgn_fbtr_fbpp_expanded 11)
(arity fbgn_gleanr 4)
(arity fbgn_NAseq_Uniprot 9)
(arity fbgn_uniprot 4)
(arity fbrf_pmid_pmcid_doi 7)
(arity gene_functional_complementation 5)
(arity gene_genetic_interactions 6)
(arity gene_group_data 7)
(arity gene_map_table 6)
(arity gene_rpkm_matrix 170)
(arity gene_rpkm_report 12)
(arity gene_snapshots 5)
(arity genome-cyto-seq 3)
(arity genomic_clone_data 4)
(arity genotype_phenotype_data 7)
(arity gp_information 10)
(arity insertion_mapping 7)
(arity organism_list 6)
(arity pathway_group_data 7)
(arity physical_interactions_mitab 42)
(arity pmid_fbgn_uniprot 5)
(arity transposon_sequence_set 62)
(arity obo-allele-common-terms 2)
(arity obo-allele-expression-desc-text 2)
(arity obo-allele-image2 6)
(arity obo-allele-images 2)
(arity obo-allele-major-stages 2)
(arity obo-allele-major-tissues 2)
(arity obo-allele-name 2)
(arity obo-allele-pubs 2)
(arity obo-allele-rex-gene 2)
(arity obo-allele-stocks 2)
(arity obo-allele-transposons 2)
(arity obo-alt-id 2)
(arity obo-attached-to 3)
(arity obo-attached-to-part-of 3)
(arity obo-charge 2)
(arity obo-comment 2)
(arity obo-common-terms 1)
(arity obo-consider 2)
(arity obo-continuous-with 3)
(arity obo-created-by 2)
(arity obo-creation-date 2)
(arity obo-crossReferenceIds 1)
(arity obo-def 4)
(arity obo-derives-from 3)
(arity obo-develops-directly-from 3)
(arity obo-develops-from 3)
(arity obo-develops-into 3)
(arity obo-directory 2)
(arity obo-disjoint-from 3)
(arity obo-electrically-synapsed-to 3)
(arity obo-exon-locations 8)
(arity obo-exons-chromosome 1)
(arity obo-exons-endPosition 1)
(arity obo-exons-INSDC-accession 1)
(arity obo-exons-startPosition 1)
(arity obo-expression-desc-text 1)
(arity obo-fasciculates-with 3)
(arity obo-fbid 1)
(arity obo-format-version 2)
(arity obo-formula 2)
(arity obo-gene 6)
(arity obo-gene-geneId 1)
(arity obo-gene-locusTag 2)
(arity obo-gene-name 2)
(arity obo-gene-symbol 2)
(arity obo-gene-synonyms 2)
(arity obo-gene-url 2)
(arity obo-has-fasciculating-neuron-projection 3)
(arity obo-has-functional-parent 2)
(arity obo-has-origin 3)
(arity obo-has-parent-hydride 2)
(arity obo-has-part 3)
(arity obo-has-quality 3)
(arity obo-has-role 2)
(arity obo-has-sensory-dendrite-in 3)
(arity obo-has-soma-location 3)
(arity obo-has-synaptic-IO-in 3)
(arity obo-id-type 2)
(arity obo-imageDescription 1)
(arity obo-images 1)
(arity obo-immediately-preceded-by 3)
(arity obo-inchi 2)
(arity obo-inchikey 2)
(arity obo-innervated-by 3)
(arity obo-innervates 3)
(arity obo-insertions 1)
(arity obo-is-a 2)
(arity obo-is-conjugate-acid-of 2)
(arity obo-is-conjugate-base-of 2)
(arity obo-is-enantiomer-of 2)
(arity obo-is-obsolete 2)
(arity obo-is-substituent-group-from 2)
(arity obo-is-tautomer-of 2)
(arity obo-is-transitive 2)
(arity obo-major-tissues 1)
(arity obo-mass 2)
(arity obo-monoisotopicmass 2)
(arity obo-name 2)
(arity obo-namespace 2)
(arity obo-negatively-regulates 3)
(arity obo-overlaps 3)
(arity obo-part-of 3)
(arity obo-pathname 2)
(arity obo-positively-regulates 3)
(arity obo-primaryId 1)
(arity obo-pubFigure 1)
(arity obo-publicationId 1)
(arity obo-publications 1)
(arity obo-pubs 1)
(arity obo-receives-input-from 3)
(arity obo-receives-synaptic-input-from-neuron 3)
(arity obo-receives-synaptic-input-in-region 3)
(arity obo-receives-synaptic-input-throughout 3)
(arity obo-regulates 3)
(arity obo-relatedSequences 3)
(arity obo-relatedSequences-sequenceId 1)
(arity obo-remark 2)
(arity obo-replaced-by 2)
(arity obo-rex-gene 1)
(arity obo-sends-synaptic-output-throughout 3)
(arity obo-sends-synaptic-output-to-cell 3)
(arity obo-sends-synaptic-output-to-region 3)
(arity obo-sequence 1)
(arity obo-smiles 2)
(arity obo-soTermId 1)
(arity obo-stocks 1)
(arity obo-subset 2)
(arity obo-subsetdef 3)
(arity obo-substage-of 3)
(arity obo-symbol 1)
(arity obo-symbolSynonyms 1)
(arity obo-synapsed-via-type-Ib-bouton-to 3)
(arity obo-synapsed-via-type-II-bouton-to 3)
(arity obo-synapsed-via-type-III-bouton-to 3)
(arity obo-synapsed-via-type-Is-bouton-to 3)
(arity obo-synonym 5)
(arity obo-synonymtypedef 4)