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)

13 rows where transcript_id = 13851083

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
73763032 GT-AG 0 6.191826409631185e-05 565 rna-XM_012994365.1 13851083 1 1402452 1403016 Erythranthe guttata 4155 TCT|GTAATTCATC...TTTCGTTTATCT/TTATGTTTCATG...ATTAG|GAG 0 1 4.754
73763033 GT-AG 0 1.000000099473604e-05 473 rna-XM_012994365.1 13851083 2 1401307 1401779 Erythranthe guttata 4155 AAG|GTTAGCCTGT...TCATCCTTGATT/AAGTTATTCACA...TTTAG|GTT 0 1 23.436
73763034 GT-AG 0 3.480827639817375e-05 98 rna-XM_012994365.1 13851083 3 1401002 1401099 Erythranthe guttata 4155 AGG|GTAATTCTAC...GCATCTTTGATC/CATGGATTAATT...CCCAG|GTA 0 1 29.191
73763035 GT-AG 0 1.000000099473604e-05 480 rna-XM_012994365.1 13851083 4 1400213 1400692 Erythranthe guttata 4155 CAG|GTAAAATGCT...TTCGACTTAATA/TTCGACTTAATA...TTCAG|GCT 0 1 37.781
73763036 GT-AG 0 1.000000099473604e-05 214 rna-XM_012994365.1 13851083 5 1399877 1400090 Erythranthe guttata 4155 TAT|GTGAGTTATC...TCACTCTTATTG/AGTTTTTTCACT...AATAG|GCC 2 1 41.173
73763037 GT-AG 1 99.99895504657827 459 rna-XM_012994365.1 13851083 6 1398323 1398781 Erythranthe guttata 4155 TCA|GTATCCTTAT...GTTTCCTTGACA/GTTTCCTTGACA...ATTAG|ATA 2 1 71.615
73763038 GT-AG 0 0.054481525634221 73 rna-XM_012994365.1 13851083 7 1398108 1398180 Erythranthe guttata 4155 CAT|GTATGTTATT...TGAGTTTTACTT/ATTAATCTGATT...ACCAG|AAA 0 1 75.563
73763039 GT-AG 0 0.0111542266205814 388 rna-XM_012994365.1 13851083 8 1397560 1397947 Erythranthe guttata 4155 TTG|GTACATTTGC...CATCTCTTGATG/GCTTATTTCATC...GGCAG|GAA 1 1 80.011
73763040 GT-AG 0 2.4972584108552268e-05 87 rna-XM_012994365.1 13851083 9 1397309 1397395 Erythranthe guttata 4155 AAG|GTACTTATCT...ATACTTGTATTT/CTTGTATTTACG...AGCAG|GGT 0 1 84.57
73763041 GT-AG 0 2.169591309055441 253 rna-XM_012994365.1 13851083 10 1396994 1397246 Erythranthe guttata 4155 AAG|GTACCCTTTA...TTTGCCTTCTTT/CATCTTCTGATT...TGCAG|GCA 2 1 86.294
73763042 GT-AG 0 1.000000099473604e-05 351 rna-XM_012994365.1 13851083 11 1396543 1396893 Erythranthe guttata 4155 AAG|GTAATTACAG...ATCTTTTTAACT/ATCTTTTTAACT...TTTAG|GTC 0 1 89.074
73763043 GT-AG 0 0.1960345817934484 247 rna-XM_012994365.1 13851083 12 1396234 1396480 Erythranthe guttata 4155 CAT|GTATATCTCT...TTACTCTTGATG/TTTCTATTTACT...TGCAG|ATG 2 1 90.798
73763044 GT-AG 0 1.000000099473604e-05 206 rna-XM_012994365.1 13851083 13 1395874 1396079 Erythranthe guttata 4155 CAG|GTCATCTTAA...GATCTTGTAATA/GATCTTGTAATA...TGCAG|GTT 0 1 95.079

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