Skip to content

Commit 49a3f71

Browse files
author
Victor Kirst
committed
Fixed error with javadoc generation
1 parent aff541a commit 49a3f71

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/main/java/com/astrazeneca/vardict/VarDict.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4786,7 +4786,7 @@ static boolean ismatch(String seq1, String seq2, int dir, boolean debugLog) {
47864786

47874787
/**
47884788
* Find the consensus sequence in soft-clipped reads. Consensus is called if
4789-
* the matched nucleotides are >90% of all softly clipped nucleotides.
4789+
* the matched nucleotides are >90% of all softly clipped nucleotides.
47904790
* @param scv soft-clipped sequences
47914791
* @param debugLog print debug message if true
47924792
* @return consensus sequence
@@ -5511,7 +5511,7 @@ private static void ampVardictNotParallel(final List<List<Region>> segs, final M
55115511
* region
55125512
* @param vars
55135513
* result of {@link #toVars} calling
5514-
* @param positions map of positon => (list of (region number, region))
5514+
* @param positions map of positon =&gt; (list of (region number, region))
55155515
* @param sample sample name
55165516
* @param splice set of strings representing spliced regions
55175517
* @param conf configuration
@@ -5787,7 +5787,7 @@ static void adjComplex(Variant vref) {
57875787
}
57885788

57895789
/**
5790-
* VARN - array of variants, REF - reference variant, VAR - map of (variant description string => variant)
5790+
* VARN - array of variants, REF - reference variant, VAR - map of (variant description string =&gt; variant)
57915791
*/
57925792
static enum VarsType {
57935793
varn, ref, var,
@@ -5951,7 +5951,6 @@ private static Region buildRegion(String region, final int numberNucleotideToExt
59515951
* @param querySeq Base sequence
59525952
* @param queryQual
59535953
* @param lowqual
5954-
* @param performLocalRealignment
59555954
* @return Tuple of (adjusted position of first matched base, modified CIGAR string)
59565955
*/
59575956
static Tuple2<Integer, String> modifyCigar(int indel, Map<Integer, Character> ref,

src/main/java/com/astrazeneca/vardict/Variant.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Variant {
1414
* 4). ... # sequence - for insertion/deletion variants followed by short matched sequence
1515
* 5). ... ^ sequence - followed by insertion
1616
* 6). ... ^ number - followed by deletion
17-
* 7). ... & sequence - for insertion/deletion variants followed by matched sequence
17+
* 7). ... &amp; sequence - for insertion/deletion variants followed by matched sequence
1818
*/
1919
String n;
2020

@@ -89,7 +89,7 @@ public class Variant {
8989
int shift3;
9090

9191
/**
92-
* msi. > 1 indicates Microsatellite instability
92+
* msi. &gt; 1 indicates Microsatellite instability
9393
*/
9494
double msi;
9595

@@ -167,4 +167,4 @@ public class Variant {
167167
* Debug information
168168
*/
169169
String DEBUG;
170-
}
170+
}

0 commit comments

Comments
 (0)