Clover icon

jalviewX

  1. Project Clover database Wed Oct 31 2018 15:13:58 GMT
  2. Package jalview.json.binding.biojson.v1

File SequencePojo.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart9.png
12% of files have more coverage

Code metrics

0
17
16
1
147
101
16
0.94
1.06
16
1

Classes

Class Line # Actions
SequencePojo 25 17 16 6
0.818181881.8%
 

Contributing tests

This file is covered by 3 tests. .

Source view

1    /*
2    * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3    * Copyright (C) $$Year-Rel$$ The Jalview Authors
4    *
5    * This file is part of Jalview.
6    *
7    * Jalview is free software: you can redistribute it and/or
8    * modify it under the terms of the GNU General Public License
9    * as published by the Free Software Foundation, either version 3
10    * of the License, or (at your option) any later version.
11    *
12    * Jalview is distributed in the hope that it will be useful, but
13    * WITHOUT ANY WARRANTY; without even the implied warranty
14    * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15    * PURPOSE. See the GNU General Public License for more details.
16    *
17    * You should have received a copy of the GNU General Public License
18    * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19    * The Jalview Authors are detailed in the 'AUTHORS' file.
20    */
21    package jalview.json.binding.biojson.v1;
22   
23    import com.github.reinert.jjschema.Attributes;
24   
 
25    public class SequencePojo
26    {
27    @Attributes(
28    required = true,
29    minLength = 3,
30    maxLength = 2147483647,
31    description = "Sequence residue characters. An aligned sequence may contain <br>one of the following gap characters &#x201c;.&#x201d;, &#x201c;-&#x201d; or &#x201c;&nbsp;&#x201d;")
32    private String seq;
33   
34    @Attributes(required = true, description = "Sequence name")
35    private String name;
36   
37    @Attributes(
38    required = false,
39    description = "Sequence type",
40    enums =
41    { "DNA", "RNA", "Protein" })
42    private String type;
43   
44    @Attributes(
45    required = true,
46    description = "Unique identifier for a given Sequence")
47    private String id;
48   
49    @Attributes(
50    required = false,
51    description = "The order/position of a sequence in the alignment space")
52    private int order;
53   
54    @Attributes(
55    required = true,
56    description = "The index of the sequence’s first residue in its source database, <br>using a one-based numbering index system")
57    private int start;
58   
59    @Attributes(
60    required = true,
61    description = "The index of the sequence’s last residue in its source database, <br>using a one-based numbering index system")
62    private int end;
63   
 
64  30 toggle public SequencePojo()
65    {
66    }
67   
 
68  0 toggle public SequencePojo(int start, int end, String id, String name,
69    String seq)
70    {
71  0 this.id = id;
72  0 this.name = name;
73  0 this.seq = seq;
74    }
75   
 
76  30 toggle public String getSeq()
77    {
78  30 return seq;
79    }
80   
 
81  30 toggle public void setSeq(String seq)
82    {
83  30 this.seq = seq;
84    }
85   
 
86  30 toggle public String getName()
87    {
88   
89  30 return name;
90    }
91   
 
92  30 toggle public void setName(String name)
93    {
94  30 this.name = name;
95    }
96   
 
97  30 toggle public String getId()
98    {
99  30 return id;
100    }
101   
 
102  30 toggle public void setId(String id)
103    {
104  30 this.id = id;
105    }
106   
 
107  30 toggle public int getStart()
108    {
109  30 return start;
110    }
111   
 
112  30 toggle public void setStart(int start)
113    {
114  30 this.start = start;
115    }
116   
 
117  30 toggle public int getEnd()
118    {
119  30 return end;
120    }
121   
 
122  30 toggle public void setEnd(int end)
123    {
124  30 this.end = end;
125    }
126   
 
127  30 toggle public int getOrder()
128    {
129  30 return order;
130    }
131   
 
132  30 toggle public void setOrder(int order)
133    {
134  30 this.order = order;
135    }
136   
 
137  30 toggle public String getType()
138    {
139  30 return type;
140    }
141   
 
142  0 toggle public void setType(String type)
143    {
144  0 this.type = type;
145    }
146   
147    }