forked from biolink/biolink-model
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGenomicSequenceLocalization.java
178 lines (159 loc) · 4.44 KB
/
GenomicSequenceLocalization.java
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
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
* GenomicSequenceLocalization
* <p>
* A relationship between a sequence feature and an entity it is localized to. The reference entity may be a chromosome, chromosome region or information entity such as a contig
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"end_interbase_coordinate",
"genome_build",
"object",
"phase",
"start_interbase_coordinate",
"subject"
})
public class GenomicSequenceLocalization {
@JsonProperty("end_interbase_coordinate")
private String endInterbaseCoordinate;
/**
* TODO
*
*/
@JsonProperty("genome_build")
@JsonPropertyDescription("TODO")
private String genomeBuild;
/**
*
* (Required)
*
*/
@JsonProperty("object")
private String object;
/**
* TODO
*
*/
@JsonProperty("phase")
@JsonPropertyDescription("TODO")
private String phase;
@JsonProperty("start_interbase_coordinate")
private String startInterbaseCoordinate;
/**
*
* (Required)
*
*/
@JsonProperty("subject")
private String subject;
@JsonProperty("end_interbase_coordinate")
public String getEndInterbaseCoordinate() {
return endInterbaseCoordinate;
}
@JsonProperty("end_interbase_coordinate")
public void setEndInterbaseCoordinate(String endInterbaseCoordinate) {
this.endInterbaseCoordinate = endInterbaseCoordinate;
}
/**
* TODO
*
*/
@JsonProperty("genome_build")
public String getGenomeBuild() {
return genomeBuild;
}
/**
* TODO
*
*/
@JsonProperty("genome_build")
public void setGenomeBuild(String genomeBuild) {
this.genomeBuild = genomeBuild;
}
/**
*
* (Required)
*
*/
@JsonProperty("object")
public String getObject() {
return object;
}
/**
*
* (Required)
*
*/
@JsonProperty("object")
public void setObject(String object) {
this.object = object;
}
/**
* TODO
*
*/
@JsonProperty("phase")
public String getPhase() {
return phase;
}
/**
* TODO
*
*/
@JsonProperty("phase")
public void setPhase(String phase) {
this.phase = phase;
}
@JsonProperty("start_interbase_coordinate")
public String getStartInterbaseCoordinate() {
return startInterbaseCoordinate;
}
@JsonProperty("start_interbase_coordinate")
public void setStartInterbaseCoordinate(String startInterbaseCoordinate) {
this.startInterbaseCoordinate = startInterbaseCoordinate;
}
/**
*
* (Required)
*
*/
@JsonProperty("subject")
public String getSubject() {
return subject;
}
/**
*
* (Required)
*
*/
@JsonProperty("subject")
public void setSubject(String subject) {
this.subject = subject;
}
@Override
public String toString() {
return new ToStringBuilder(this).append("endInterbaseCoordinate", endInterbaseCoordinate).append("genomeBuild", genomeBuild).append("object", object).append("phase", phase).append("startInterbaseCoordinate", startInterbaseCoordinate).append("subject", subject).toString();
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(phase).append(genomeBuild).append(subject).append(endInterbaseCoordinate).append(object).append(startInterbaseCoordinate).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof GenomicSequenceLocalization) == false) {
return false;
}
GenomicSequenceLocalization rhs = ((GenomicSequenceLocalization) other);
return new EqualsBuilder().append(phase, rhs.phase).append(genomeBuild, rhs.genomeBuild).append(subject, rhs.subject).append(endInterbaseCoordinate, rhs.endInterbaseCoordinate).append(object, rhs.object).append(startInterbaseCoordinate, rhs.startInterbaseCoordinate).isEquals();
}
}