@@ -120,34 +120,66 @@ public List<Pair<Group>> findPairs(List<Chain> chains) {
120120 return result ;
121121 }
122122
123+ /**
124+ * This method returns the maximum stagger between bases used as criteria for the characterization of two bases as being paired.
125+ * @return the maximum propeller ("propeller-twist", in degrees) allowed.
126+ */
123127 public static double getMaxStagger () {
124128 return MaxStagger ;
125129 }
126130
131+ /**
132+ * This method sets the maximum stagger allowed for a base pair, prior to analyze() call
133+ * @param maxStagger The maximum propeller (in Å) allowed to consider two bases paired
134+ */
127135 public static void setMaxStagger (double maxStagger ) {
128136 MaxStagger = maxStagger ;
129137 }
130138
139+ /**
140+ * This method returns the maximum shear between bases used as criteria for the characterization of two bases as being paired.
141+ * @return the maximum shear (in Å) allowed.
142+ */
131143 public static double getMaxShear () {
132144 return MaxShear ;
133145 }
134146
147+ /**
148+ * This method sets the maximum shear allowed for a base pair, prior to analyze() call
149+ * @param maxShear The maximum shear (in Å) allowed to consider two bases paired
150+ */
135151 public static void setMaxShear (double maxShear ) {
136152 MaxShear = maxShear ;
137153 }
138154
155+ /**
156+ * This method returns the maximum stretch between bases used as criteria for the characterization of two bases as being paired.
157+ * @return the maximum stretch (in Å) allowed.
158+ */
139159 public static double getMaxStretch () {
140160 return MaxStretch ;
141161 }
142162
163+ /**
164+ * This method sets the maximum stretch allowed for a base pair, prior to analyze() call.
165+ * @param maxStretch The maximum stretch (in Å) allowed to consider two bases paired
166+ */
143167 public static void setMaxStretch (double maxStretch ) {
144168 MaxStretch = maxStretch ;
145169 }
146170
171+ /**
172+ * This method returns the maximum propeller twist between bases used as criteria for the characterization of two bases as being paired.
173+ * @return the maximum propeller ("propeller-twist", in degrees) allowed.
174+ */
147175 public static double getMaxPropeller () {
148176 return MaxPropeller ;
149177 }
150178
179+ /**
180+ * This method sets the maximum propeller allowed for a base pair, prior to analyze() call
181+ * @param maxPropeller The maximum propeller ("propeller-twist", in degrees) allowed to consider two bases paired
182+ */
151183 public static void setMaxPropeller (double maxPropeller ) {
152184 MaxPropeller = maxPropeller ;
153185 }
0 commit comments