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

✎ 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
108234509 GT-AG 0 1.000000099473604e-05 925 rna-XM_019587904.1 20211447 1 3594213 3595137 Lupinus angustifolius 3871 AAG|GTGGGTTTTC...GTAACTTTATGT/TTTCTGTTCAAT...AACAG|GAG 1 1 1.212
108234510 GT-AG 0 0.1829176024179195 87 rna-XM_019587904.1 20211447 2 3594013 3594099 Lupinus angustifolius 3871 CAA|GTATGTTTCT...TTTCTTTTGACT/TTTCTTTTGACT...TCCAG|GTT 0 1 4.396
108234511 GT-AG 0 0.0015517373712588 323 rna-XM_019587904.1 20211447 3 3593594 3593916 Lupinus angustifolius 3871 CAT|GTATGTGCAC...ACTTTCTTATAT/GACTTTCTTATA...ATCAG|GCT 0 1 7.101
108234512 GT-AG 0 6.041420483331732e-05 128 rna-XM_019587904.1 20211447 4 3593409 3593536 Lupinus angustifolius 3871 AAA|GTAAGTTTGC...TATGGTTTGATT/TATGGTTTGATT...AACAG|TAT 0 1 8.707
108234513 GT-AG 0 1.000000099473604e-05 110 rna-XM_019587904.1 20211447 5 3593143 3593252 Lupinus angustifolius 3871 CTG|GTGTGTACTG...TTCCCTGTAAAT/TAAATGCTGACC...GATAG|GAT 0 1 13.102
108234514 GT-AG 0 8.585098997954313e-05 122 rna-XM_019587904.1 20211447 6 3592936 3593057 Lupinus angustifolius 3871 GCG|GTATTGCCAC...ATCACCTTATAA/GATTTATTGATG...TACAG|GAC 1 1 15.497
108234515 GT-AG 0 1.000000099473604e-05 84 rna-XM_019587904.1 20211447 7 3592761 3592844 Lupinus angustifolius 3871 CAG|GTAGGAAATA...TGTTGCTGAACC/GTGTTGCTGAAC...TTTAG|AGA 2 1 18.061
108234516 GT-AG 0 8.345135189211168e-05 101 rna-XM_019587904.1 20211447 8 3592495 3592595 Lupinus angustifolius 3871 AAG|GTACTATTTG...CATCCATTGATT/CATCCATTGATT...AACAG|GGC 2 1 22.711
108234517 GT-AG 0 0.0005959746300959 346 rna-XM_019587904.1 20211447 9 3591953 3592298 Lupinus angustifolius 3871 CAG|GTATTTCAAA...AAGTCTTTATTA/TATTAGCTTATT...GATAG|ATT 0 1 28.233
108234518 GT-AG 0 1.000000099473604e-05 354 rna-XM_019587904.1 20211447 10 3591460 3591813 Lupinus angustifolius 3871 CAG|GTAGCAACAC...TGATCCTTGTAA/TTGTAATTGATT...TGCAG|ATG 1 1 32.15
108234519 GT-AG 0 1.000000099473604e-05 296 rna-XM_019587904.1 20211447 11 3589128 3589423 Lupinus angustifolius 3871 AAG|GTTTGTCACT...AAATGCTTAATG/AAGGTATTCAAA...TATAG|GTT 0 1 89.518
108234520 GT-AG 0 7.002451311689242e-05 216 rna-XM_019587904.1 20211447 12 3588721 3588936 Lupinus angustifolius 3871 GGA|GTAAGTAGTT...ATTTTCTTGAAC/CTTGAACTTATT...TGCAG|AGA 2 1 94.9

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