X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2FSeqCigar.java;h=77e9111b8851ca4a38d66a3cf5d4b5e0ea8c2e69;hb=ab43013b7e357b84b4abade0dba949668dfb2a0e;hp=ffe152bc4700e1bb0e474df0ef9fb25558a47207;hpb=47168f025aefdaa044802bd5f8f510ffe43a4808;p=jalview.git diff --git a/src/jalview/datamodel/SeqCigar.java b/src/jalview/datamodel/SeqCigar.java index ffe152b..77e9111 100644 --- a/src/jalview/datamodel/SeqCigar.java +++ b/src/jalview/datamodel/SeqCigar.java @@ -1,5 +1,5 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2) + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1) * Copyright (C) 2014 The Jalview Authors * * This file is part of Jalview. @@ -93,8 +93,7 @@ public class SeqCigar extends CigarSimple refseq.getSequenceAsString(start, end), GapChar); if (edit_result == null) { - throw new Error( - "Implementation Error - unexpected null from getSequenceAndDeletions"); + throw new Error(MessageManager.getString("error.implementation_error_unexpected_null_from_get_sequence_and_deletions")); } int bounds[] = (int[]) edit_result[1]; seq = new Sequence(refseq.getName(), (String) edit_result[0], @@ -142,11 +141,11 @@ public class SeqCigar extends CigarSimple boolean hasgaps = false; if (seq == null) { - throw new Error("Implementation Error - _setSeq(null,...)"); + throw new Error(MessageManager.getString("error.implementation_error_set_seq_null")); } if (_s < 0) { - throw new Error("Implementation Error: _s=" + _s); + throw new Error(MessageManager.formatMessage("error.implementation_error_s", new String[]{Integer.valueOf(_s).toString()})); } String seq_string = seq.getSequenceAsString(); if (_e == 0 || _e < _s || _e > seq_string.length()) @@ -212,8 +211,7 @@ public class SeqCigar extends CigarSimple // Check offsets if (end > ds.getLength()) { - throw new Error( - "SeqCigar: Possible implementation error: sequence is longer than dataset sequence"); + throw new Error(MessageManager.getString("error.implementation_error_seqcigar_possible")); // end = ds.getLength(); } @@ -237,12 +235,11 @@ public class SeqCigar extends CigarSimple super(); if (seq == null) { - throw new Error("Implementation Bug. Null seq !"); + throw new Error(MessageManager.getString("error.implmentation_bug_seq_null")); } if (operation.length != range.length) { - throw new Error( - "Implementation Bug. Cigar Operation list!= range list"); + throw new Error(MessageManager.getString("error.implementation_bug_cigar_operation_list_range_list")); } if (operation != null) @@ -252,17 +249,14 @@ public class SeqCigar extends CigarSimple if (_setSeq(seq, false, 0, 0)) { - throw new Error( - "NOT YET Implemented: Constructing a Cigar object from a cigar string and a gapped sequence."); + throw new Error(MessageManager.getString("error.not_yet_implemented_cigar_object_from_cigar_string")); } for (int i = this.length, j = 0; j < operation.length; i++, j++) { char op = operation[j]; if (op != M && op != I && op != D) { - throw new Error("Implementation Bug. Cigar Operation '" + j - + "' '" + op + "' not one of '" + M + "', '" + I - + "', or '" + D + "'."); + throw new Error(MessageManager.formatMessage("error.implementation_bug_cigar_operation", new String[]{Integer.valueOf(j).toString(),Integer.valueOf(op).toString(),Integer.valueOf(M).toString(),Integer.valueOf(I).toString(),Integer.valueOf(D).toString()})); } this.operation[i] = op; this.range[i] = range[j]; @@ -276,8 +270,7 @@ public class SeqCigar extends CigarSimple this.length = 0; if (_setSeq(seq, false, 0, 0)) { - throw new Error( - "NOT YET Implemented: Constructing a Cigar object from a cigar string and a gapped sequence."); + throw new Error(MessageManager.getString("error.not_yet_implemented_cigar_object_from_cigar_string")); } } } @@ -384,7 +377,7 @@ public class SeqCigar extends CigarSimple super(); if (seq == null) { - throw new Error("Implementation error for new Cigar(SequenceI)"); + throw new Error(MessageManager.getString("error.implementation_error_for_new_cigar")); } _setSeq(seq, false, 0, 0); // there is still work to do @@ -406,7 +399,7 @@ public class SeqCigar extends CigarSimple super(); if (seq == null) { - throw new Error("Implementation error for new Cigar(SequenceI)"); + throw new Error(MessageManager.getString("error.implementation_error_for_new_cigar")); } _setSeq(seq, false, start, end + 1); // there is still work to do @@ -461,8 +454,7 @@ public class SeqCigar extends CigarSimple // endcol}, hidden regions {{start, end, col}}) if (gs_regions[i] == null) { - throw new Error("Implementation error: " + i - + "'th sequence Cigar has no operations."); + throw new Error(MessageManager.formatMessage("error.implementation_error_cigar_seq_no_operations", new String[]{Integer.valueOf(i).toString()})); } g_seqs[i] = new StringBuffer((String) ((Object[]) gs_regions[i])[0]); // the // visible