diff --git a/src/main/java/htsjdk/samtools/util/FileExtensions.java b/src/main/java/htsjdk/samtools/util/FileExtensions.java index fc2e37d6c6..2e51db4f5f 100755 --- a/src/main/java/htsjdk/samtools/util/FileExtensions.java +++ b/src/main/java/htsjdk/samtools/util/FileExtensions.java @@ -79,4 +79,5 @@ public final class FileExtensions { public static final Set BLOCK_COMPRESSED = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(".gz", ".gzip", ".bgz", ".bgzf"))); public static final Set GFF3 = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(".gff3", ".gff", ".gff3.gz", ".gff.gz"))); + public static final Set GTF = Collections.unmodifiableSet(new HashSet<>(Arrays.asList(".gtf", ".gtf.gz"))); } diff --git a/src/main/java/htsjdk/tribble/gtf/GtfCodec.java b/src/main/java/htsjdk/tribble/gtf/GtfCodec.java new file mode 100644 index 0000000000..2a52942303 --- /dev/null +++ b/src/main/java/htsjdk/tribble/gtf/GtfCodec.java @@ -0,0 +1,391 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import htsjdk.samtools.util.CloserUtil; +import htsjdk.samtools.util.FileExtensions; +import htsjdk.samtools.util.IOUtil; +import htsjdk.samtools.util.LocationAware; + +import htsjdk.samtools.util.Log; +import htsjdk.tribble.AsciiFeatureCodec; +import htsjdk.tribble.Feature; +import htsjdk.tribble.FeatureCodecHeader; +import htsjdk.tribble.TribbleException; +import htsjdk.tribble.annotation.Strand; +import htsjdk.tribble.index.tabix.TabixFormat; +import htsjdk.tribble.readers.*; +import htsjdk.tribble.util.ParsingUtils; + + + +import java.io.*; +import java.net.URLDecoder; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.*; +import java.util.function.Predicate; +import java.util.zip.GZIPInputStream; + +/** + * Codec parsing Gtf files. The code was partially copied from the gff package + * + * @author Pierre Lindenbaum + */ +public class GtfCodec extends AsciiFeatureCodec { + + private static final int NUM_FIELDS = 9; + + private static final int CHROMOSOME_NAME_INDEX = 0; + private static final int ANNOTATION_SOURCE_INDEX = 1; + private static final int FEATURE_TYPE_INDEX = 2; + private static final int START_LOCATION_INDEX = 3; + private static final int END_LOCATION_INDEX = 4; + private static final int SCORE_INDEX = 5; + private static final int GENOMIC_STRAND_INDEX = 6; + private static final int GENOMIC_PHASE_INDEX = 7; + private static final int EXTRA_FIELDS_INDEX = 8; + + private final static Log logger = Log.getInstance(GtfCodec.class); + + /** current line number */ + private int currentLine = 0; + + /** filter to removing keys from the EXTRA_FIELDS column */ + private final Predicate filterOutAttribute; + + + public GtfCodec() { + this(KEY -> false); + } + + /** + * @param decodeDepth a value from DecodeDepth + * @param filterOutAttribute filter to remove keys from the EXTRA_FIELDS column + */ + public GtfCodec(final Predicate filterOutAttribute) { + super(GtfFeature.class); + this.filterOutAttribute = filterOutAttribute; + } + + @Override + public GtfFeature decode(final LineIterator lineIterator) { + while (lineIterator.hasNext()) { + final String line = lineIterator.next(); + this.currentLine++; + if (line.startsWith(GtfConstants.COMMENT_START)) + continue; + return decode(line); + } + return null; + } + + /** + * Parse attributes field for GTF feature + * + * Warning: I'm not sure it's the best algotithm to parse attributes UTF-8 escaping is not + * handled for now Multiple values for the same key are defined with multiple K=V1; K=V2 Is it + * the right gtf way ? + * + * + * @param attributesString attributes field string from line in GTF file + * @return map of keys to values for attributes of this feature + * @throws UnsupportedEncodingException + */ + static private Map> parseAttributes(final String attributesString) + throws UnsupportedEncodingException { + if (attributesString.equals(GtfConstants.UNDEFINED_FIELD_VALUE)) { + return Collections.emptyMap(); + } + final Map> attributes = new LinkedHashMap<>(); + final int len = attributesString.length(); + int i = 0; + for (;;) { + // skip whitespaces + while (i < len && Character.isWhitespace(attributesString.charAt(i))) { + i++; + } + // end of string + if (i >= len) { + break; + } + + final StringBuilder keyBuilder = new StringBuilder(); + + // consumme key + while (i < len && !Character.isWhitespace(attributesString.charAt(i))) { + keyBuilder.append(attributesString.charAt(i)); + i++; + } + // skip whitespaces + while (i < len && Character.isWhitespace(attributesString.charAt(i))) { + i++; + } + + final String key = keyBuilder.toString(); + + List values = attributes.get(key); + if (values == null) { + values = new ArrayList<>(); + attributes.put(key, values); + } + + // no value + if (i >= len) { + logger.warn("no value for '" + key + "' in " + attributesString); + values.add(""); + break; + } + + /* read VALUE */ + final StringBuilder valueBuilder = new StringBuilder(); + // first char of value + char c = attributesString.charAt(i); + + if (c == GtfConstants.ATTRIBUTE_DELIMITER) { // no value + i++; + values.add(""); + logger.warn("no value for '" + key + "' in " + attributesString); + continue; + } + + + // quoted string + if (c == '\"') { + i++; + while (i < len) { + c = attributesString.charAt(i); + ++i; + if (c == '\\') { + c = (i < len ? attributesString.charAt(i) : '\0'); + ++i; + switch (c) { + case '"': + valueBuilder.append("\""); + break; + case '\'': + valueBuilder.append("\'"); + break; + case 't': + valueBuilder.append("\t"); + break; + case 'n': + valueBuilder.append("\n"); + break; + default: + logger.warn("unparsed value in " + attributesString); + break; + } + } else if (c == '\"') { + values.add(valueBuilder.toString()); + break; + } else { + valueBuilder.append(c); + } + } + // skip whitespaces + while (i < len && Character.isWhitespace(attributesString.charAt(i))) { + i++; + } + if (i >= len) { + break; + } + if (attributesString.charAt(i) != GtfConstants.ATTRIBUTE_DELIMITER) + throw new TribbleException("expected a " + GtfConstants.ATTRIBUTE_DELIMITER + + " after value " + valueBuilder); + i++; + } else /* not a quoted string */ + { + while (i < len) { + c = attributesString.charAt(i); + ++i; + if (c == GtfConstants.ATTRIBUTE_DELIMITER) { + break; + } + valueBuilder.append(c); + } + values.add(valueBuilder.toString()); + } + } + return attributes; + } + + @Override + public GtfFeature decode(final String line) { + if (line.startsWith(GtfConstants.COMMENT_START)) + return null; + + final List splitLine = ParsingUtils.split(line, GtfConstants.FIELD_DELIMITER); + + if (splitLine.size() != NUM_FIELDS) { + throw new TribbleException( + "Found an invalid number of columns in the given Gtf file at line + " + + this.currentLine + " - Given: " + splitLine.size() + " Expected: " + + NUM_FIELDS + " : " + line); + } + + try { + final String contig = URLDecoder.decode(splitLine.get(CHROMOSOME_NAME_INDEX), "UTF-8"); + final String source = + URLDecoder.decode(splitLine.get(ANNOTATION_SOURCE_INDEX), "UTF-8"); + final String type = URLDecoder.decode(splitLine.get(FEATURE_TYPE_INDEX), "UTF-8"); + final int start = Integer.parseInt(splitLine.get(START_LOCATION_INDEX)); + final int end = Integer.parseInt(splitLine.get(END_LOCATION_INDEX)); + final OptionalDouble score = + splitLine.get(SCORE_INDEX).equals(GtfConstants.UNDEFINED_FIELD_VALUE) + ? OptionalDouble.empty() + : OptionalDouble.of(Double.parseDouble(splitLine.get(SCORE_INDEX))); + final OptionalInt phase = + splitLine.get(GENOMIC_PHASE_INDEX).equals(GtfConstants.UNDEFINED_FIELD_VALUE) + ? OptionalInt.empty() + : OptionalInt.of(Integer.parseInt(splitLine.get(GENOMIC_PHASE_INDEX))); + final Strand strand = Strand.decode(splitLine.get(GENOMIC_STRAND_INDEX)); + final Map> attributes = + parseAttributes(splitLine.get(EXTRA_FIELDS_INDEX)); + /* remove attibutes matching 'filterOutAttribute' */ + attributes.keySet().removeIf(this.filterOutAttribute); + return new GtfFeatureImpl(contig, source, type, start, end, score, strand, phase, + attributes); + } catch (final NumberFormatException ex) { + throw new TribbleException("Cannot read integer value for start/end position from line " + + currentLine + ". Line is: " + line, ex); + } catch (final IOException ex) { + throw new TribbleException( + "Cannot decode feature info from line " + currentLine + ". Line is: " + line, + ex); + } + } + + @Override + public Feature decodeLoc(LineIterator lineIterator) throws IOException { + return decode(lineIterator); + } + + @Override + public boolean canDecode(final String inputFilePath) { + boolean canDecode; + try { + // Simple file and name checks to start with: + Path p = IOUtil.getPath(inputFilePath); + canDecode = FileExtensions.GTF.stream().anyMatch(fe -> p.toString().endsWith(fe)); + + if (canDecode) { + // Crack open the file and look at the top of it: + try (InputStream inputStream = IOUtil.hasGzipFileExtension(p) + ? new GZIPInputStream(Files.newInputStream(p)) + : Files.newInputStream(p)) { + try (BufferedReader br = + new BufferedReader(new InputStreamReader(inputStream))) { + + String line = br.readLine(); + + while (line.startsWith(GtfConstants.COMMENT_START)) { + line = br.readLine(); + if (line == null) { + return false; + } + } + + // make sure line conforms to gtf spec + final List fields = + ParsingUtils.split(line, GtfConstants.FIELD_DELIMITER); + + canDecode &= fields.size() == NUM_FIELDS; + + if (canDecode) { + try { + // check that start and end fields are integers + Integer.parseInt(fields.get(START_LOCATION_INDEX)); + Integer.parseInt(fields.get(END_LOCATION_INDEX)); + // check fields look like GTF + parseAttributes(fields.get(EXTRA_FIELDS_INDEX)); + + } catch (NumberFormatException | NullPointerException + | UnsupportedEncodingException | TribbleException ex) { + return false; + } + + // check for strand + + final String strand = fields.get(GENOMIC_STRAND_INDEX); + canDecode &= strand.equals(Strand.POSITIVE.toString()) + || strand.equals(Strand.NEGATIVE.toString()) + || strand.equals(Strand.NONE.toString()) || strand.equals("?"); + } + } + } + } + } catch (FileNotFoundException ex) { + logger.error(inputFilePath + " not found."); + return false; + } catch (final IOException ex) { + return false; + } + + return canDecode; + } + + @Override + public FeatureCodecHeader readHeader(final LineIterator lineIterator) { + return new FeatureCodecHeader(readActualHeader(lineIterator), + FeatureCodecHeader.NO_HEADER_END); + } + + + @Override + public LineIterator makeSourceFromStream(final InputStream bufferedInputStream) { + return new LineIteratorImpl(new SynchronousLineReader(bufferedInputStream)); + } + + @Override + public LocationAware makeIndexableSourceFromStream(final InputStream bufferedInputStream) { + return new AsciiLineReaderIterator(AsciiLineReader.from(bufferedInputStream)); + } + + @Override + public boolean isDone(final LineIterator lineIterator) { + return !lineIterator.hasNext(); + } + + @Override + public void close(final LineIterator lineIterator) { + // cleanup resources + CloserUtil.close(lineIterator); + } + + @Override + public TabixFormat getTabixFormat() { + return TabixFormat.GFF;// GFF has the same columns than GTF + } + + @Override + public Object readActualHeader(LineIterator lineIterator) { + final List header = new ArrayList<>(); + while (lineIterator.hasNext()) { + final String line = lineIterator.peek(); + if (line.startsWith(GtfConstants.COMMENT_START)) { + header.add(line); + lineIterator.next(); + } else { + break; + } + } + return header; + } +} diff --git a/src/main/java/htsjdk/tribble/gtf/GtfConstants.java b/src/main/java/htsjdk/tribble/gtf/GtfConstants.java new file mode 100644 index 0000000000..c677d0afd3 --- /dev/null +++ b/src/main/java/htsjdk/tribble/gtf/GtfConstants.java @@ -0,0 +1,36 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import htsjdk.tribble.gff.Gff3Constants; + +/** + * Constants for the GTF format + * The code was partially copied from the gff package + * @author Pierre Lindenbaum + * + */ +public class GtfConstants { + public static final char FIELD_DELIMITER = Gff3Constants.FIELD_DELIMITER; + public static final char ATTRIBUTE_DELIMITER = Gff3Constants.ATTRIBUTE_DELIMITER; + public static final String COMMENT_START = Gff3Constants.COMMENT_START; + public static final String UNDEFINED_FIELD_VALUE = Gff3Constants.UNDEFINED_FIELD_VALUE; + public static final String GENE_ID = "gene_id"; + public static final String TRANSCRIPT_ID = "transcript_id"; +} diff --git a/src/main/java/htsjdk/tribble/gtf/GtfFeature.java b/src/main/java/htsjdk/tribble/gtf/GtfFeature.java new file mode 100644 index 0000000000..e8abe7a9f1 --- /dev/null +++ b/src/main/java/htsjdk/tribble/gtf/GtfFeature.java @@ -0,0 +1,148 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import htsjdk.tribble.Feature; +import htsjdk.tribble.annotation.Strand; + +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.OptionalDouble; +import java.util.OptionalInt; + +/** + * describes a GTF (Gene transfer format ) record See + * https://en.wikipedia.org/wiki/Gene_transfer_format The code was partially copied from the gff + * package + * + * @author Pierre Lindenbaum + */ +public interface GtfFeature extends Feature { + + @Override + public String getContig(); + + @Override + public int getStart(); + + @Override + public int getEnd(); + + public String getSource(); + + public Strand getStrand(); + + public OptionalInt getPhase(); + + public String getType(); + + public OptionalDouble getScore(); + + public Map> getAttributes(); + + /** + * @param key the searched key + * @return true if the GTF feature has this attribute + */ + public default boolean hasAttribute(final String key) { + return getAttributes().containsKey(key); + } + + /** + * @param key the attribute name + * @return the value for this attribute or null if there is none + * @throws IllegalArgumentException if there is more than one value for this attribute + */ + public default String getAttribute(final String key) { + final List values = getAttributes(key); + if (values == null || values.isEmpty()) { + return null; + } + + if (values.size() != 1) { + throw new IllegalArgumentException( + "Attribute '" + key + "' has multiple values when only one expected"); + } + return values.get(0); + } + + /** + * @param key the attribute name + * @return the values for this attribute or an empty List if there is none + */ + public default List getAttributes(final String key) { + return getAttributes().getOrDefault(key, Collections.emptyList()); + } + + /** + * @return true if this feature type is a gene + */ + public default boolean isGene() { + return this.getType().equals("gene"); + } + + /** + * @return true if this feature type is a transcript + */ + public default boolean isTranscript() { + return this.getType().equals("transcript"); + } + + /** + * @return true if this feature type is an exon + */ + public default boolean isExon() { + return this.getType().equals("exon"); + } + + /** + * @return true if this feature type is a CDS + */ + public default boolean isCDS() { + return this.getType().equals("CDS"); + } + + /** + * shortcut to getAttribute("gene_name") + * + * @return the gene name or null + */ + public default String getGeneName() { + return getAttribute("gene_name"); + } + + /** + * shortcut to getAttribute(GtfConstants.GENE_ID) + * + * @return the gene ID or null + */ + public default String getGeneId() { + return getAttribute(GtfConstants.GENE_ID); + } + + /** + * shortcut to getAttribute(GtfConstants.TRANSCRIPT_ID) + * + * @return the transcript ID or null + */ + public default String getTranscriptId() { + return getAttribute(GtfConstants.TRANSCRIPT_ID); + } +} diff --git a/src/main/java/htsjdk/tribble/gtf/GtfFeatureImpl.java b/src/main/java/htsjdk/tribble/gtf/GtfFeatureImpl.java new file mode 100644 index 0000000000..19bada9d8a --- /dev/null +++ b/src/main/java/htsjdk/tribble/gtf/GtfFeatureImpl.java @@ -0,0 +1,191 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.OptionalDouble; +import java.util.OptionalInt; +import java.util.stream.Collectors; +import htsjdk.tribble.annotation.Strand; +import htsjdk.tribble.gff.Gff3Constants; + +/** + * default implementation of GtfFeature. The code was partially copied from the gff package + * + * @author Pierre Lindenbaum + * + */ +class GtfFeatureImpl implements GtfFeature { + private final String contig; + private final String source; + private final String type; + private final int start; + private final int end; + private final OptionalDouble score; + private final Strand strand; + private final OptionalInt phase; + private final Map> attributes; + private final int hashCode; + + GtfFeatureImpl(final String contig, final String source, final String type, final int start, + final int end, final OptionalDouble score, final Strand strand, final OptionalInt phase, + final Map> attributes) { + this.contig = contig; + this.source = source; + this.type = type; + this.start = start; + this.end = end; + this.score = score; + this.phase = phase; + this.strand = strand; + this.attributes = copyAttributesSafely(attributes); + this.hashCode = computeHashCode(); + } + + private static Map> copyAttributesSafely( + final Map> attributes) { + final Map> modifiableDeepMap = new LinkedHashMap<>(attributes.size()); + + for (final Map.Entry> entry : attributes.entrySet()) { + final List unmodifiableDeepList = + Collections.unmodifiableList(new ArrayList<>(entry.getValue())); + modifiableDeepMap.put(entry.getKey(), unmodifiableDeepList); + } + + return Collections.unmodifiableMap(modifiableDeepMap); + } + + @Override + public boolean equals(final Object other) { + if (other == this) { + return true; + } + if (other == null || !(other instanceof GtfFeatureImpl)) { + return false; + } + + final GtfFeatureImpl otherBaseData = (GtfFeatureImpl) other; + return otherBaseData.getContig().equals(getContig()) + && otherBaseData.getSource().equals(getSource()) + && otherBaseData.getType().equals(getType()) + && otherBaseData.getStart() == getStart() + && otherBaseData.getEnd() == getEnd() + && otherBaseData.getScore().equals(getScore()) + && otherBaseData.getPhase().equals(getPhase()) + && otherBaseData.getStrand().equals(getStrand()) + && otherBaseData.getAttributes().equals(getAttributes()); + + } + + @Override + public int hashCode() { + return hashCode; + } + + private int computeHashCode() { + int hash = getContig().hashCode(); + hash = 31 * hash + getSource().hashCode(); + hash = 31 * hash + getType().hashCode(); + hash = 31 * hash + Integer.hashCode(getStart()); + hash = 31 * hash + Integer.hashCode(getEnd()); + hash = 31 * hash + getScore().hashCode(); + hash = 31 * hash + getPhase().hashCode(); + hash = 31 * hash + getStrand().hashCode(); + hash = 31 * hash + getAttributes().hashCode(); + + return hash; + } + + @Override + public String getContig() { + return contig; + } + + @Override + public String getSource() { + return source; + } + + @Override + public String getType() { + return type; + } + + @Override + public int getStart() { + return start; + } + + @Override + public int getEnd() { + return end; + } + + @Override + public OptionalDouble getScore() { + return score; + } + + @Override + public Strand getStrand() { + return strand; + } + + @Override + public OptionalInt getPhase() { + return phase; + } + + @Override + public Map> getAttributes() { + return attributes; + } + + @Override + public String toString() { + return new StringBuilder(). + append(this.getContig()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getSource()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getType()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getStart()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getEnd()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getScore().isPresent() ? String.valueOf(this.getScore().getAsDouble()) : Gff3Constants.UNDEFINED_FIELD_VALUE ). + append(GtfConstants.FIELD_DELIMITER). + append(this.getStrand().toString()). + append(GtfConstants.FIELD_DELIMITER). + append(this.getPhase().isPresent() ? String.valueOf(this.getPhase().getAsInt()) : Gff3Constants.UNDEFINED_FIELD_VALUE). + append(GtfConstants.FIELD_DELIMITER). + append(getAttributes().isEmpty() ? + GtfConstants.UNDEFINED_FIELD_VALUE: + getAttributes().entrySet().stream(). + flatMap(KV-> KV.getValue().stream().map(S->KV.getKey()+" \""+S+"\"")). + collect(Collectors.joining("; ")) + ). + toString(); + } +} diff --git a/src/test/java/htsjdk/tribble/gtf/GtfCodecTest.java b/src/test/java/htsjdk/tribble/gtf/GtfCodecTest.java new file mode 100644 index 0000000000..d872916621 --- /dev/null +++ b/src/test/java/htsjdk/tribble/gtf/GtfCodecTest.java @@ -0,0 +1,104 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import java.io.IOException; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.util.Arrays; +import java.util.HashSet; +import java.util.Iterator; +import java.util.Set; + +import org.testng.Assert; +import org.testng.annotations.DataProvider; +import org.testng.annotations.Test; + +import htsjdk.HtsjdkTest; +import htsjdk.tribble.AbstractFeatureReader; +import htsjdk.tribble.TestUtils; +import htsjdk.tribble.readers.LineIterator; + + +public class GtfCodecTest extends HtsjdkTest { + + final static String DATA_DIR = TestUtils.DATA_DIR + "/gtf/"; + + private final Path gencode_human_scn5a = Paths.get(DATA_DIR + "gencode.v43.annotation.gtf"); + private final Path gencode_mouse_scn5a_bgzip = Paths.get(DATA_DIR + "gencode.vM32.annotation.gtf.gz"); + + @DataProvider(name = "basicDecodeDataProvider") + Object[][] basicDecodeDataProvider() { + return new Object[][] {{gencode_human_scn5a, 434}, {gencode_mouse_scn5a_bgzip, 5}}; + } + + + @Test(dataProvider = "basicDecodeDataProvider") + public void countFeaturesTest(final Path inputGtf, final int expectedTotalFeatures) + throws IOException { + final Set skip_attributes = new HashSet<>( + Arrays.asList("version", "rank", "gene_type", "mgi_id", "havana_gene", "tag")); + final GtfCodec codec = new GtfCodec(S -> skip_attributes.contains(S)); + final String filename = inputGtf.toAbsolutePath().toString(); + Assert.assertTrue(codec.canDecode(filename)); + try (final AbstractFeatureReader reader = + AbstractFeatureReader.getFeatureReader(filename, null, codec, false)) { + int countTotalFeatures = 0; + for (final GtfFeature feature : reader.iterator()) { + for (final String key : skip_attributes) { + Assert.assertNull(feature.getAttribute(key)); + } + countTotalFeatures++; + } + Assert.assertEquals(countTotalFeatures, expectedTotalFeatures); + } + } + + + @Test(dataProvider = "basicDecodeDataProvider") + public void equalityTest(final Path inputGtf, final int expectedTotalFeatures) + throws IOException { + final GtfCodec codec1 = new GtfCodec(); + Assert.assertTrue(codec1.canDecode(inputGtf.toAbsolutePath().toString())); + final GtfCodec codec2 = new GtfCodec(); + Assert.assertTrue(codec2.canDecode(inputGtf.toAbsolutePath().toString())); + final String filename = inputGtf.toAbsolutePath().toString(); + GtfFeature previous = null; + try (final AbstractFeatureReader reader1 = + AbstractFeatureReader.getFeatureReader(filename, null, codec1, false)) { + try (final AbstractFeatureReader reader2 = + AbstractFeatureReader.getFeatureReader(filename, null, codec2, false)) { + Iterator iter1 = reader1.iterator(); + Iterator iter2 = reader2.iterator(); + while (iter1.hasNext()) { + + GtfFeature feat1 = iter1.next(); + GtfFeature feat2 = iter2.next(); + Assert.assertTrue(feat1.equals(feat2)); + Assert.assertEquals(feat1.hashCode(), feat2.hashCode()); + Assert.assertFalse(feat1.equals(previous)); + previous = feat1; + } + Assert.assertFalse(iter2.hasNext()); + } + } + } + + +} diff --git a/src/test/java/htsjdk/tribble/gtf/GtfFeatureTest.java b/src/test/java/htsjdk/tribble/gtf/GtfFeatureTest.java new file mode 100644 index 0000000000..2841105b4c --- /dev/null +++ b/src/test/java/htsjdk/tribble/gtf/GtfFeatureTest.java @@ -0,0 +1,134 @@ +/* + * The MIT License + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and + * associated documentation files (the "Software"), to deal in the Software without restriction, + * including without limitation the rights to use, copy, modify, merge, publish, distribute, + * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all copies or + * substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT + * NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +package htsjdk.tribble.gtf; + +import java.io.UnsupportedEncodingException; + +import org.testng.Assert; +import org.testng.annotations.Test; + +import htsjdk.HtsjdkTest; +import htsjdk.tribble.annotation.Strand; + +public class GtfFeatureTest extends HtsjdkTest { + + private GtfFeature decode(String... tokens) { + return new GtfCodec().decode(String.join("\t", tokens)); + } + + + @Test + public void testGene() throws UnsupportedEncodingException { + final GtfFeature f1 = decode("chr9", "HAVANA", "gene", "119312474", "119408082", ".", "-", + ".", + "gene_id \"ENSMUSG00000032511.18\"; gene_type \"protein_coding\"; gene_name \"Scn5a\"; level 2; mgi_id \"MGI:98251\"; havana_gene \"OTTMUSG00000031832.3\";"); + Assert.assertEquals(f1.getContig(), "chr9"); + Assert.assertEquals(f1.getSource(), "HAVANA"); + Assert.assertEquals(f1.getType(), "gene"); + Assert.assertEquals(f1.getStart(), 119312474); + Assert.assertEquals(f1.getEnd(), 119408082); + Assert.assertFalse(f1.getScore().isPresent()); + Assert.assertEquals(f1.getStrand(), Strand.NEGATIVE); + Assert.assertFalse(f1.getPhase().isPresent()); + Assert.assertTrue(f1.hasAttribute(GtfConstants.GENE_ID)); + Assert.assertEquals(f1.getAttributes(GtfConstants.GENE_ID).size(), 1); + Assert.assertTrue(f1.isGene()); + Assert.assertFalse(f1.isTranscript()); + Assert.assertEquals(f1.getGeneId(), "ENSMUSG00000032511.18"); + Assert.assertEquals(f1.getGeneName(), "Scn5a"); + Assert.assertNull(f1.getTranscriptId()); + } + + @Test + public void testTranscript() throws UnsupportedEncodingException { + final GtfFeature f1 = decode("chr9", "ENSEMBL", "transcript", "119312474", "119391744", ".", + "-", ".", + "gene_id \"ENSMUSG00000032511.18\"; transcript_id \"ENSMUST00000065196.13\"; gene_type \"protein_coding\"; gene_name \"Scn5a\"; transcript_type \"protein_coding\"; transcript_name \"Scn5a-201\"; level 3; protein_id \"ENSMUSP00000066228.7\"; transcript_support_level \"5\"; mgi_id \"MGI:98251\"; tag \"basic\"; tag \"appris_principal_4\"; tag \"CCDS\"; ccdsid \"CCDS57715.1\"; havana_gene \"OTTMUSG00000031832.3\";"); + Assert.assertEquals(f1.getContig(), "chr9"); + Assert.assertEquals(f1.getSource(), "ENSEMBL"); + Assert.assertEquals(f1.getType(), "transcript"); + Assert.assertEquals(f1.getStart(), 119312474); + Assert.assertEquals(f1.getEnd(), 119391744); + Assert.assertFalse(f1.getScore().isPresent()); + Assert.assertEquals(f1.getStrand(), Strand.NEGATIVE); + Assert.assertFalse(f1.getPhase().isPresent()); + Assert.assertTrue(f1.hasAttribute(GtfConstants.GENE_ID)); + Assert.assertTrue(f1.hasAttribute(GtfConstants.TRANSCRIPT_ID)); + Assert.assertEquals(f1.getAttributes(GtfConstants.GENE_ID).size(), 1); + Assert.assertEquals(f1.getAttributes(GtfConstants.TRANSCRIPT_ID).size(), 1); + Assert.assertFalse(f1.isGene()); + Assert.assertTrue(f1.isTranscript()); + Assert.assertFalse(f1.isExon()); + Assert.assertFalse(f1.isCDS()); + Assert.assertEquals(f1.getGeneId(), "ENSMUSG00000032511.18"); + Assert.assertEquals(f1.getTranscriptId(), "ENSMUST00000065196.13"); + + } + + @Test + public void testExon() throws UnsupportedEncodingException { + final GtfFeature f1 = decode("chr9", "ENSEMBL", "exon", "119312474", "119315884", ".", "-", + ".", + "gene_id \"ENSMUSG00000032511.18\"; transcript_id \"ENSMUST00000065196.13\"; gene_type \"protein_coding\"; gene_name \"Scn5a\"; transcript_type \"protein_coding\"; transcript_name \"Scn5a-201\"; exon_number 27; exon_id \"ENSMUSE00000505623.5\"; level 3; protein_id \"ENSMUSP00000066228.7\"; transcript_support_level \"5\"; mgi_id \"MGI:98251\"; tag \"basic\"; tag \"appris_principal_4\"; tag \"CCDS\"; ccdsid \"CCDS57715.1\"; havana_gene \"OTTMUSG00000031832.3\";"); + Assert.assertEquals(f1.getContig(), "chr9"); + Assert.assertEquals(f1.getSource(), "ENSEMBL"); + Assert.assertEquals(f1.getType(), "exon"); + Assert.assertEquals(f1.getStart(), 119312474); + Assert.assertEquals(f1.getEnd(), 119315884); + Assert.assertFalse(f1.getScore().isPresent()); + Assert.assertEquals(f1.getStrand(), Strand.NEGATIVE); + Assert.assertFalse(f1.getPhase().isPresent()); + Assert.assertTrue(f1.hasAttribute(GtfConstants.GENE_ID)); + Assert.assertTrue(f1.hasAttribute(GtfConstants.TRANSCRIPT_ID)); + Assert.assertEquals(f1.getAttributes(GtfConstants.GENE_ID).size(), 1); + Assert.assertEquals(f1.getAttributes(GtfConstants.TRANSCRIPT_ID).size(), 1); + Assert.assertFalse(f1.isGene()); + Assert.assertFalse(f1.isTranscript()); + Assert.assertTrue(f1.isExon()); + Assert.assertFalse(f1.isCDS()); + Assert.assertEquals(f1.getGeneId(), "ENSMUSG00000032511.18"); + Assert.assertEquals(f1.getTranscriptId(), "ENSMUST00000065196.13"); + + } + + @Test + public void testCDS() throws UnsupportedEncodingException { + final GtfFeature f1 = decode("chr3", "HAVANA", "CDS", "38550324", "38551558", ".", "-", "2", + "gene_id \"ENSG00000183873.18\"; transcript_id \"ENST00000449557.6\"; gene_type \"protein_coding\"; gene_name \"SCN5A\"; transcript_type \"protein_coding\"; transcript_name \"SCN5A-206\"; exon_number 26; exon_id \"ENSE00001672933.1\"; level 2; protein_id \"ENSP00000413996.2\"; transcript_support_level \"5\"; hgnc_id \"HGNC:10593\"; tag \"basic\"; havana_gene \"OTTHUMG00000156166.6\"; havana_transcript \"OTTHUMT00000343227.3\";"); + Assert.assertEquals(f1.getContig(), "chr3"); + Assert.assertEquals(f1.getSource(), "HAVANA"); + Assert.assertEquals(f1.getType(), "CDS"); + Assert.assertEquals(f1.getStart(), 38550324); + Assert.assertEquals(f1.getEnd(), 38551558); + Assert.assertFalse(f1.getScore().isPresent()); + Assert.assertEquals(f1.getStrand(), Strand.NEGATIVE); + Assert.assertTrue(f1.getPhase().isPresent()); + Assert.assertEquals(f1.getPhase().orElse(-1), 2); + Assert.assertTrue(f1.hasAttribute(GtfConstants.GENE_ID)); + Assert.assertTrue(f1.hasAttribute(GtfConstants.TRANSCRIPT_ID)); + Assert.assertEquals(f1.getAttributes(GtfConstants.GENE_ID).size(), 1); + Assert.assertEquals(f1.getAttributes(GtfConstants.TRANSCRIPT_ID).size(), 1); + Assert.assertFalse(f1.isGene()); + Assert.assertFalse(f1.isTranscript()); + Assert.assertFalse(f1.isExon()); + Assert.assertTrue(f1.isCDS()); + Assert.assertEquals(f1.getGeneId(), "ENSG00000183873.18"); + Assert.assertEquals(f1.getTranscriptId(), "ENST00000449557.6"); + } +} diff --git a/src/test/resources/htsjdk/tribble/gtf/gencode.v43.annotation.gtf b/src/test/resources/htsjdk/tribble/gtf/gencode.v43.annotation.gtf new file mode 100644 index 0000000000..1c4b8d8150 --- /dev/null +++ b/src/test/resources/htsjdk/tribble/gtf/gencode.v43.annotation.gtf @@ -0,0 +1,439 @@ +##description: evidence-based annotation of the human genome (GRCh38), version 43 (Ensembl 109) +##provider: GENCODE +##contact: gencode-help@ebi.ac.uk +##format: gtf +##date: 2022-11-29 +chr3 HAVANA gene 38548057 38649687 . - . gene_id "ENSG00000183873.18"; gene_type "protein_coding"; gene_name "SCN5A"; level 1; hgnc_id "HGNC:10593"; tag "overlapping_locus"; havana_gene "OTTHUMG00000156166.6"; +chr3 HAVANA transcript 38548057 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38633035 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38613975 38614066 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 5; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38613975 38614066 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 5; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38579334 38579495 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 17; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38579334 38579495 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 17; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 18; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 18; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 19; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 19; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 20; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 20; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 21; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 21; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 22; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 22; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA exon 38548057 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 26; exon_id "ENSE00001637952.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 26; exon_id "ENSE00001637952.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 26; exon_id "ENSE00001637952.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA UTR 38633308 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA UTR 38548057 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000414099.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-204"; exon_number 26; exon_id "ENSE00001637952.1"; level 2; protein_id "ENSP00000398962.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS46798.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343226.2"; +chr3 HAVANA transcript 38548062 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38633035 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38613743 38613834 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 6; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38613743 38613834 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 6; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38579334 38579495 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 18; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38579334 38579495 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 18; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA exon 38548062 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA UTR 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA UTR 38633308 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA UTR 38548062 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000333535.9"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-202"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000328968.4"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46796.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000377958.1"; +chr3 HAVANA transcript 38548062 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38633035 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38613975 38614066 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 6; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38613975 38614066 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 6; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38579334 38579495 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 18; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38579334 38579495 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 18; exon_id "ENSE00001321647.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA exon 38548062 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA UTR 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA UTR 38633308 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA UTR 38548062 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000413689.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-203"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000410257.1"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; tag "MANE_Plus_Clinical"; tag "appris_principal_4"; tag "CCDS"; ccdsid "CCDS46799.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343224.3"; +chr3 HAVANA transcript 38548062 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38633035 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 3; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 4; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 5; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38613743 38613834 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 6; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38613743 38613834 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 6; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 7; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 8; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 9; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 10; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 11; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 12; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 13; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 14; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 15; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 16; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 17; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38579334 38579492 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 18; exon_id "ENSE00001778541.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38579334 38579492 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 18; exon_id "ENSE00001778541.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 19; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 20; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 21; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 22; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 23; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 24; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 25; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 26; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 27; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA exon 38548062 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA UTR 38649531 38649687 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 1; exon_id "ENSE00002090179.2"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA UTR 38633308 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 2; exon_id "ENSE00003481512.1"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA UTR 38548062 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000423572.7"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-205"; exon_number 28; exon_id "ENSE00001310375.3"; level 2; protein_id "ENSP00000398266.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "Ensembl_canonical"; tag "MANE_Select"; tag "appris_alternative_1"; tag "CCDS"; ccdsid "CCDS46797.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343225.2"; +chr3 HAVANA transcript 38549128 38633332 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38633035 38633332 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 1; exon_id "ENSE00001661138.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 1; exon_id "ENSE00001661138.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 1; exon_id "ENSE00001661138.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 2; exon_id "ENSE00003585523.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 2; exon_id "ENSE00003585523.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 3; exon_id "ENSE00003562400.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 3; exon_id "ENSE00003562400.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 4; exon_id "ENSE00003464330.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 4; exon_id "ENSE00003464330.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38613975 38614066 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 5; exon_id "ENSE00001805777.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38613975 38614066 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 5; exon_id "ENSE00001805777.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 6; exon_id "ENSE00001414724.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 6; exon_id "ENSE00001414724.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 7; exon_id "ENSE00001330780.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 7; exon_id "ENSE00001330780.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 8; exon_id "ENSE00001299736.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 8; exon_id "ENSE00001299736.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 9; exon_id "ENSE00001320962.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 9; exon_id "ENSE00001320962.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 10; exon_id "ENSE00001300791.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 10; exon_id "ENSE00001300791.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 11; exon_id "ENSE00001322079.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 11; exon_id "ENSE00001322079.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 12; exon_id "ENSE00001300049.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 12; exon_id "ENSE00001300049.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 13; exon_id "ENSE00001329449.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 13; exon_id "ENSE00001329449.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 14; exon_id "ENSE00001306185.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 14; exon_id "ENSE00001306185.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 15; exon_id "ENSE00001315108.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 15; exon_id "ENSE00001315108.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 16; exon_id "ENSE00001302724.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 16; exon_id "ENSE00001302724.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38579334 38579492 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 17; exon_id "ENSE00001778541.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38579334 38579492 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 17; exon_id "ENSE00001778541.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 18; exon_id "ENSE00001308928.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 18; exon_id "ENSE00001308928.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 19; exon_id "ENSE00001328382.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 19; exon_id "ENSE00001328382.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 20; exon_id "ENSE00001304836.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 20; exon_id "ENSE00001304836.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 21; exon_id "ENSE00001293012.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 21; exon_id "ENSE00001293012.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 22; exon_id "ENSE00001301918.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 22; exon_id "ENSE00001301918.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 23; exon_id "ENSE00001734136.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 23; exon_id "ENSE00001734136.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 24; exon_id "ENSE00001425187.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 24; exon_id "ENSE00001425187.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 25; exon_id "ENSE00001647919.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 25; exon_id "ENSE00001647919.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38554375 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 26; exon_id "ENSE00001797729.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38554375 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 26; exon_id "ENSE00001797729.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA exon 38549128 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 27; exon_id "ENSE00001710634.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 27; exon_id "ENSE00001710634.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 27; exon_id "ENSE00001710634.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA UTR 38633308 38633332 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 1; exon_id "ENSE00001661138.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA UTR 38549128 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000455624.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-208"; exon_number 27; exon_id "ENSE00001710634.1"; level 1; protein_id "ENSP00000399524.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "exp_conf"; tag "CCDS"; ccdsid "CCDS54570.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343215.2"; +chr3 HAVANA transcript 38549968 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38633035 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38613975 38614066 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 5; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38613975 38614066 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 5; exon_id "ENSE00001805777.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 17; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 17; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 18; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 18; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 19; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 19; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 20; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 20; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 21; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 21; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 22; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 22; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA exon 38549968 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 26; exon_id "ENSE00001638986.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 26; exon_id "ENSE00001638986.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 26; exon_id "ENSE00001638986.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA UTR 38633308 38633349 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 1; exon_id "ENSE00001315391.4"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA UTR 38549968 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000450102.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-207"; exon_number 26; exon_id "ENSE00001638986.1"; level 2; protein_id "ENSP00000403355.2"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "basic"; tag "CCDS"; ccdsid "CCDS54569.1"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343218.2"; +chr3 HAVANA transcript 38550321 38633316 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38633035 38633316 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 1; exon_id "ENSE00001626376.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38633035 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 1; exon_id "ENSE00001626376.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 1; exon_id "ENSE00001626376.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38630311 38630429 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 2; exon_id "ENSE00003585523.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38622400 38622489 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 3; exon_id "ENSE00003562400.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38620843 38620971 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 4; exon_id "ENSE00003464330.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38613743 38613834 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 5; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38613743 38613834 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 5; exon_id "ENSE00001318072.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38609734 38609964 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38609734 38609964 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 6; exon_id "ENSE00001414724.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38608151 38608214 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38608151 38608214 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 7; exon_id "ENSE00001330780.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38606669 38606810 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38606669 38606810 . - 1 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 8; exon_id "ENSE00001299736.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38605951 38606148 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38605951 38606148 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 9; exon_id "ENSE00001320962.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38604729 38604908 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38604729 38604908 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 10; exon_id "ENSE00001300791.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38603712 38604083 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38603712 38604083 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 11; exon_id "ENSE00001322079.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38598918 38599050 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38598918 38599050 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 12; exon_id "ENSE00001300049.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38597729 38597967 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38597729 38597967 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 13; exon_id "ENSE00001329449.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38587400 38587573 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38587400 38587573 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 14; exon_id "ENSE00001306185.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38585691 38586041 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38585691 38586041 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 15; exon_id "ENSE00001315108.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38580931 38581371 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38580931 38581371 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 16; exon_id "ENSE00001302724.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38576661 38576781 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 17; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38576661 38576781 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 17; exon_id "ENSE00001308928.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38575297 38575451 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 18; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38575297 38575451 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 18; exon_id "ENSE00001328382.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38566409 38566582 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 19; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38566409 38566582 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 19; exon_id "ENSE00001304836.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38562415 38562537 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 20; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38562415 38562537 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 20; exon_id "ENSE00001293012.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38560147 38560428 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 21; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38560147 38560428 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 21; exon_id "ENSE00001301918.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38557231 38557284 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 22; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38557231 38557284 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 22; exon_id "ENSE00001734136.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38556441 38556578 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38556441 38556578 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 23; exon_id "ENSE00001425187.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38555656 38555760 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38555656 38555760 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 24; exon_id "ENSE00001647919.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38554279 38554549 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 25; exon_id "ENSE00003534979.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA exon 38550321 38551558 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 26; exon_id "ENSE00001672933.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA CDS 38550324 38551558 . - 2 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 26; exon_id "ENSE00001672933.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA stop_codon 38550321 38550323 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 26; exon_id "ENSE00001672933.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA UTR 38633308 38633316 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 1; exon_id "ENSE00001626376.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA UTR 38550321 38550323 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000449557.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-206"; exon_number 26; exon_id "ENSE00001672933.1"; level 2; protein_id "ENSP00000413996.2"; transcript_support_level "5"; hgnc_id "HGNC:10593"; tag "basic"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343227.3"; +chr3 HAVANA transcript 38552981 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000464652.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding_CDS_not_defined"; transcript_name "SCN5A-209"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343219.1"; +chr3 HAVANA exon 38554279 38554549 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000464652.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding_CDS_not_defined"; transcript_name "SCN5A-209"; exon_number 1; exon_id "ENSE00003463119.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343219.1"; +chr3 HAVANA exon 38552981 38553300 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000464652.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding_CDS_not_defined"; transcript_name "SCN5A-209"; exon_number 2; exon_id "ENSE00001846680.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343219.1"; +chr3 HAVANA transcript 38614028 38649673 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38649531 38649673 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 1; exon_id "ENSE00001918524.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38633035 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 2; exon_id "ENSE00003589262.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38630311 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 3; exon_id "ENSE00003581232.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38622400 38622489 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 4; exon_id "ENSE00003603522.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38620843 38620971 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 5; exon_id "ENSE00003557217.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA exon 38614028 38614603 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000491944.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-211"; exon_number 6; exon_id "ENSE00001867481.1"; level 2; transcript_support_level "1"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343216.1"; +chr3 HAVANA transcript 38629842 38633220 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000476683.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-210"; level 2; transcript_support_level "3"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343221.1"; +chr3 HAVANA exon 38633035 38633220 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000476683.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-210"; exon_number 1; exon_id "ENSE00001955930.1"; level 2; transcript_support_level "3"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343221.1"; +chr3 HAVANA exon 38629842 38630429 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000476683.1"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "retained_intron"; transcript_name "SCN5A-210"; exon_number 2; exon_id "ENSE00001831909.1"; level 2; transcript_support_level "3"; hgnc_id "HGNC:10593"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343221.1"; +chr3 HAVANA transcript 38633111 38645776 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA exon 38645691 38645776 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 1; exon_id "ENSE00001650115.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA exon 38633111 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 2; exon_id "ENSE00001779170.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA CDS 38633111 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 2; exon_id "ENSE00001779170.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA start_codon 38633305 38633307 . - 0 gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 2; exon_id "ENSE00001779170.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA UTR 38645691 38645776 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 1; exon_id "ENSE00001650115.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; +chr3 HAVANA UTR 38633308 38633359 . - . gene_id "ENSG00000183873.18"; transcript_id "ENST00000327956.6"; gene_type "protein_coding"; gene_name "SCN5A"; transcript_type "protein_coding"; transcript_name "SCN5A-201"; exon_number 2; exon_id "ENSE00001779170.1"; level 2; protein_id "ENSP00000333674.6"; transcript_support_level "1"; hgnc_id "HGNC:10593"; tag "alternative_5_UTR"; tag "mRNA_end_NF"; tag "cds_end_NF"; havana_gene "OTTHUMG00000156166.6"; havana_transcript "OTTHUMT00000343217.2"; diff --git a/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz b/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz new file mode 100644 index 0000000000..668318e955 Binary files /dev/null and b/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz differ diff --git a/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz.tbi b/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz.tbi new file mode 100644 index 0000000000..9e098bfe39 Binary files /dev/null and b/src/test/resources/htsjdk/tribble/gtf/gencode.vM32.annotation.gtf.gz.tbi differ