home / WtMTA

introns

Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)

id
INTEGER (primary key), globally unique identifier for each intron
dinucleotide_pair
TEXT, terminal dinucleotide sequences of the intron
is_minor
INTEGER, indicates if the intron is a minor intron (1) or not (0)
score
REAL, score representing the probability (0-100%) of the intron being minor
length
INTEGER, length of the intron in base pairs
transcript_id
INTEGER (foreign key referencing transcripts(id)), parent transcript
ordinal_index
INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
start
INTEGER, start position of the intron in the genome
end
INTEGER, end position of the intron in the genome
taxonomy_id
INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
scored_motifs
TEXT, motifs scored for the intron
phase
INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
in_cds
INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
relative_position
REAL, relative position of the intron within the transcript (as a percentage of coding length)

12 rows where transcript_id = 22023875

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
119314488 GT-AG 0 1.000000099473604e-05 89 Misin01G359400.1.v7.1 22023875 1 117203544 117203632 Miscanthus sinensis 62337 AAG|GTGACGGATT...TTGTTCTGATCA/TTTGTTCTGATC...CTCAG|GCG 2 1 19.108
119314489 GT-AG 0 1.000000099473604e-05 104 Misin01G359400.1.v7.1 22023875 2 117203358 117203461 Miscanthus sinensis 62337 TCT|GTGAGGGATT...GTCTGCTTAGAT/CGGTGTCTTATA...TGCAG|GTC 0 1 21.151
119314490 GT-AG 0 0.0001053388598079 108 Misin01G359400.1.v7.1 22023875 3 117203058 117203165 Miscanthus sinensis 62337 GAG|GTACGTATCG...GTTTATTTGATA/GTTTATTTGATA...GTCAG|ATA 0 1 25.934
119314491 GT-AG 0 1.000000099473604e-05 117 Misin01G359400.1.v7.1 22023875 4 117202876 117202992 Miscanthus sinensis 62337 CAG|GTCATATGAC...TTTACCTTTTCT/TGTTTGTTTACC...TGCAG|GTT 2 1 27.554
119314492 GT-AG 0 4.363896682113554e-05 78 Misin01G359400.1.v7.1 22023875 5 117202638 117202715 Miscanthus sinensis 62337 AAG|GTCTTCAGCC...ACTCGTTTGATT/ACTCGTTTGATT...TACAG|GAT 0 1 31.54
119314493 GT-AG 0 0.0001566700923597 92 Misin01G359400.1.v7.1 22023875 6 117202306 117202397 Miscanthus sinensis 62337 CAG|GTTTCACTGC...TCATCTCTAGTA/CCCAGCATAATT...TGCAG|GCC 0 1 37.519
119314494 GT-AG 0 3.281899030483952e-05 146 Misin01G359400.1.v7.1 22023875 7 117202043 117202188 Miscanthus sinensis 62337 GAG|GTAACACTCC...TGTTTCTGATTT/TTGTTTCTGATT...TTTAG|GAC 0 1 40.433
119314495 GT-AG 0 1.000000099473604e-05 107 Misin01G359400.1.v7.1 22023875 8 117201744 117201850 Miscanthus sinensis 62337 GAG|GTTGGTTTAT...ATGTTTTTATAA/TATGTTTTTATA...TTCAG|GTT 0 1 45.217
119314496 GT-AG 0 1.000000099473604e-05 97 Misin01G359400.1.v7.1 22023875 9 117201568 117201664 Miscanthus sinensis 62337 CAG|GTTTGTGATA...GTGCTTATAATT/TCTGTGCTTATA...GACAG|ACC 1 1 47.185
119314497 GT-AG 0 1.000000099473604e-05 11531 Misin01G359400.1.v7.1 22023875 10 117189108 117200638 Miscanthus sinensis 62337 GAG|GTAAATATGT...AAGTTCTTGTTC/TTCTTGTTCATT...TGTAG|GCT 0 1 70.329
119314498 GT-AG 0 0.004122909059932 77 Misin01G359400.1.v7.1 22023875 11 117188526 117188602 Miscanthus sinensis 62337 AGG|GTATGTTGTG...GTGGCCTGATTT/GAACTTTTCATT...CTCAG|ATA 1 1 82.91
119314499 GT-AG 0 0.0007045710955985 93 Misin01G359400.1.v7.1 22023875 12 117188248 117188340 Miscanthus sinensis 62337 CAG|GTCTTTTTCA...GCTTCTATAACT/TGTGGTTTCAAC...TGCAG|AAT 0 1 87.519

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE "introns" (
"id" INTEGER,
  "dinucleotide_pair" TEXT,
  "is_minor" INTEGER,
  "score" REAL,
  "length" INTEGER,
  "transcript_id" INTEGER,
  "ordinal_index" INTEGER,
  "start" INTEGER,
  "end" INTEGER,
  "taxonomy_id" INTEGER,
  "scored_motifs" TEXT,
  "phase" INTEGER,
  "in_cds" INTEGER,
  "relative_position" REAL
  ,PRIMARY KEY ([id]),
   FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
   FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
    ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
    ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
    ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
    ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
    ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
    ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
    ON [introns] ([in_cds]);
Powered by Datasette · Queries took 239.596ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)