예제 #1
0
 /**
  * Returns the standard format line for {@code ID}. If none exists, throw an {@link
  * TribbleException}
  */
 public static VCFFormatHeaderLine getFormatLine(final String ID) {
   return formatStandards.get(ID, true);
 }
예제 #2
0
 /**
  * Returns the standard info line for {@code ID}. If none exists, return {@code null} or throw a
  * {@link TribbleException}, depending on {@code throwErrorForMissing}.
  */
 public static VCFInfoHeaderLine getInfoLine(final String ID, final boolean throwErrorForMissing) {
   return infoStandards.get(ID, throwErrorForMissing);
 }
예제 #3
0
 /**
  * Returns the standard format line for {@code ID}. If none exists, return null or throw an
  * exception, depending on {@code throwErrorForMissing}.
  */
 public static VCFFormatHeaderLine getFormatLine(
     final String ID, final boolean throwErrorForMissing) {
   return formatStandards.get(ID, throwErrorForMissing);
 }