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 = 410598

✎ 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
2418385 GT-AG 0 1.000000099473604e-05 2170 rna-XM_015913161.1 410598 1 1680640 1682809 Acropora digitifera 70779 AAG|GTAAGACGAA...TTTTTCTTGTTT/AATCTCTTCAGA...AGTAG|GTA 1 1 0.891
2418386 GT-AG 0 1.000000099473604e-05 1659 rna-XM_015913161.1 410598 2 1682968 1684626 Acropora digitifera 70779 CAG|GTAAATAGAA...TTGGCTTTAACA/TTGGCTTTAACA...CACAG|TCT 0 1 5.916
2418387 GT-AG 0 1.000000099473604e-05 338 rna-XM_015913161.1 410598 3 1684874 1685211 Acropora digitifera 70779 ATG|GTTAGTGGGC...ATTTCAATAATT/CAATAATTGATC...TACAG|CAG 1 1 13.772
2418388 GT-AG 0 1.000000099473604e-05 495 rna-XM_015913161.1 410598 4 1685457 1685951 Acropora digitifera 70779 CAG|GTGAGAAGGT...TTTTTTTTAATG/TTTTTTTTAATG...TTTAG|ATA 0 1 21.565
2418389 GT-AG 0 1.000000099473604e-05 451 rna-XM_015913161.1 410598 5 1686271 1686721 Acropora digitifera 70779 ACG|GTAAGGATAA...GTTTTCTTAAAG/TTATTTTTAAAT...TGTAG|ATG 1 1 31.711
2418390 GT-AG 0 1.000000099473604e-05 302 rna-XM_015913161.1 410598 6 1686899 1687200 Acropora digitifera 70779 CAG|GTAAAGATAA...TGTTTGTTAACT/TGTTTGTTAACT...TTTAG|GCG 1 1 37.341
2418391 GT-AG 0 1.000000099473604e-05 483 rna-XM_015913161.1 410598 7 1687352 1687834 Acropora digitifera 70779 CAG|GTAATAGTAA...CTCGTCTTCACC/CTCGTCTTCACC...TGCAG|GGT 2 1 42.144
2418392 GT-AG 0 1.000000099473604e-05 375 rna-XM_015913161.1 410598 8 1688032 1688406 Acropora digitifera 70779 CTG|GTAAGCAGTA...AATGTTTTATTT/TAATGTTTTATT...TCTAG|GTG 1 1 48.41
2418393 GT-AG 0 1.05587119538559e-05 1476 rna-XM_015913161.1 410598 9 1688646 1690121 Acropora digitifera 70779 CAG|GTTTGTTAAA...TGGATTTTACTA/TTGGATTTTACT...AATAG|CCC 0 1 56.011
2418394 GT-AG 0 1.000000099473604e-05 309 rna-XM_015913161.1 410598 10 1690456 1690764 Acropora digitifera 70779 CAG|GTGAGTTAGT...GTGTTTTTATCA/CGTGTTTTTATC...TTTAG|GTG 1 1 66.635
2418395 GT-AG 0 1.000000099473604e-05 310 rna-XM_015913161.1 410598 11 1691040 1691349 Acropora digitifera 70779 CAG|GTACATGATA...GTACCCATATTA/TATCTACTAATG...TTCAG|ACT 0 1 75.382
2418396 GT-AG 0 1.000000099473604e-05 80 rna-XM_015913161.1 410598 12 1691545 1691624 Acropora digitifera 70779 CAG|GTTGGTAGCT...GACACCTTAAAA/TTTTTACTGACT...TTCAG|CAT 0 1 81.584

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 564.014ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)