Skip to content

Commit

Permalink
Don't use type names as external content type strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnbroad committed Jun 11, 2024
1 parent 79ba8d9 commit e6cfc62
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/htsjdk/beta/io/bundle/BundleResourceType.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
public class BundleResourceType {

/**************************************** Common primary content types ******************************************/
public static final String CT_ALIGNED_READS = HtsContentType.ALIGNED_READS.name();
public static final String CT_VARIANT_CONTEXTS = HtsContentType.VARIANT_CONTEXTS.name();
public static final String CT_HAPLOID_REFERENCE = HtsContentType.HAPLOID_REFERENCE.name();
public static final String CT_FEATURES = HtsContentType.FEATURES.name();
public static final String CT_ALIGNED_READS = "ALIGNED_READS";
public static final String CT_VARIANT_CONTEXTS = "VARIANT_CONTEXTS";
public static final String CT_HAPLOID_REFERENCE = "HAPLOID_REFERENCE";
public static final String CT_FEATURES = "FEATURES";

/****************************************** Resource types for READS ********************************************/
/** Formats for primary content type {@link BundleResourceType#CT_ALIGNED_READS} */
Expand Down

0 comments on commit e6cfc62

Please sign in to comment.