Skip to content

Commit

Permalink
fix: remove non-existent id property from edges
Browse files Browse the repository at this point in the history
  • Loading branch information
MelihDarcanxyz committed Dec 12, 2024
1 parent 1bff5fa commit d0a4ef6
Showing 1 changed file with 0 additions and 51 deletions.
51 changes: 0 additions & 51 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,75 +661,62 @@ type SideEffect {
###
interface Biological_process_is_a_biological_process @relationshipProperties {
id: ID!
}
interface Biological_process_negatively_regulates_biological_process
@relationshipProperties {
id: ID!
}
interface Biological_process_negatively_regulates_molecular_function
@relationshipProperties {
id: ID!
}
interface Biological_process_part_of_biological_process
@relationshipProperties {
id: ID!
}
interface Biological_process_positively_regulates_biological_process
@relationshipProperties {
id: ID!
}
interface Biological_process_positively_regulates_molecular_function
@relationshipProperties {
id: ID!
}
###
# CellularComponent -> Any
###
interface Cellular_component_is_a_cellular_component @relationshipProperties {
id: ID!
}
interface Cellular_component_part_of_cellular_component
@relationshipProperties {
id: ID!
}
###
# Disease -> Any
###
interface Disease_is_a_disease @relationshipProperties {
id: ID!
}
interface Disease_is_associated_with_disease @relationshipProperties {
id: ID!
disgenet_jaccard_genes_score: Float
disgenet_jaccard_variants_score: Float
source: [String]
}
interface Disease_is_comorbid_with_disease @relationshipProperties {
id: ID!
}
interface Disease_is_treated_by_drug @relationshipProperties {
id: ID!
max_phase: Int
pubmed_ids: [String]
source: [String]
}
interface Disease_modulates_pathway @relationshipProperties {
id: ID!
source: [String]
}
Expand All @@ -738,26 +725,22 @@ interface Disease_modulates_pathway @relationshipProperties {
###
interface Ec_number_is_a_ec_number @relationshipProperties {
id: ID!
}
###
# Gene -> Any
###
interface Gene_encodes_protein @relationshipProperties {
id: ID!
}
interface Gene_is_orthologous_with_gene @relationshipProperties {
id: ID!
oma_orthology_score: Float
relation_type: String
source: [String]
}
interface Gene_is_related_to_disease @relationshipProperties {
id: ID!
allele_id: String
clinical_significance: String
dbsnp_id: [String]
Expand All @@ -773,7 +756,6 @@ interface Gene_is_related_to_disease @relationshipProperties {
}
interface Gene_regulates_gene @relationshipProperties {
id: ID!
dorothea_confidence_level: String
pubmed_id: [String]
source: [String]
Expand All @@ -785,22 +767,18 @@ interface Gene_regulates_gene @relationshipProperties {
###
interface Molecular_function_is_a_molecular_function @relationshipProperties {
id: ID!
}
interface Molecular_function_negatively_regulates_molecular_function
@relationshipProperties {
id: ID!
}
interface Molecular_function_part_of_molecular_function
@relationshipProperties {
id: ID!
}
interface Molecular_function_positively_regulates_molecular_function
@relationshipProperties {
id: ID!
}
###
Expand All @@ -824,39 +802,32 @@ interface Compound_targets_protein @relationshipProperties {
###
interface Organism_causes_disease @relationshipProperties {
id: ID!
}
###
# Pathway -> Any
###
interface Pathway_is_equivalent_to_pathway @relationshipProperties {
id: ID!
}
interface Pathway_is_part_of_pathway @relationshipProperties {
id: ID!
}
interface Pathway_is_ortholog_to_pathway @relationshipProperties {
id: ID!
}
interface Pathway_participates_pathway @relationshipProperties {
id: ID!
}
###
# Phenotype -> Any
###
interface Phenotype_is_a_phenotype @relationshipProperties {
id: ID!
}
interface Phenotype_is_associated_with_disease @relationshipProperties {
id: ID!
evidence: String
pubmed_ids: [String]
}
Expand All @@ -866,33 +837,27 @@ interface Phenotype_is_associated_with_disease @relationshipProperties {
###
interface Protein_belongs_to_organism @relationshipProperties {
id: ID!
}
interface Protein_catalyzes_ec_number @relationshipProperties {
id: ID!
}
interface Protein_contributes_to_molecular_function @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_enables_molecular_function @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_has_domain @relationshipProperties {
id: ID!
start: String
end: String
}
interface Protein_interacts_with_protein @relationshipProperties {
id: ID!
intact_score: Float
interaction_type: String
method: String
Expand All @@ -903,35 +868,29 @@ interface Protein_interacts_with_protein @relationshipProperties {
}
interface Protein_involved_in_biological_process @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_is_active_in_cellular_component @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_is_associated_with_phenotype @relationshipProperties {
id: ID!
}
interface Protein_located_in_cellular_component @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_part_of_cellular_component @relationshipProperties {
id: ID!
evidence_code: String
reference: String
}
interface Protein_take_part_in_pathway @relationshipProperties {
id: ID!
source: String
}
Expand All @@ -940,62 +899,52 @@ interface Protein_take_part_in_pathway @relationshipProperties {
###
interface Protein_domain_enables_molecular_function @relationshipProperties {
id: ID!
}
interface Protein_domain_involved_in_biological_process
@relationshipProperties {
id: ID!
}
interface Protein_domain_located_in_cellular_component @relationshipProperties {
id: ID!
}
###
# SideEffect -> Any
###
interface Side_effect_is_a_side_effect @relationshipProperties {
id: ID!
}
###
# Drug -> Any
###
interface Drug_downregulates_gene @relationshipProperties {
id: ID!
references: [String]
}
interface Drug_has_side_effect @relationshipProperties {
id: ID!
frequency: String
proportional_reporting_ratio: Float
source: [String]
}
interface Drug_has_target_in_pathway @relationshipProperties {
id: ID!
source: String
}
interface Drug_upregulates_gene @relationshipProperties {
id: ID!
references: [String]
}
interface Drug_interacts_with_drug @relationshipProperties {
id: ID!
interaction_level: String
interaction_type: [String]
recommendation: String
source: [String]
}
interface Drug_targets_protein @relationshipProperties {
id: ID!
activity_type: String
activity_value: Float
confidence_score: Float
Expand Down

0 comments on commit d0a4ef6

Please sign in to comment.