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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
109622303 GT-AG 0 3.2350709596320376e-05 8591 rna-XM_042653871.1 20429256 1 35263535 35272125 Macadamia integrifolia 60698 CAG|GTTTGTTCAC...TTTTTTATGATT/TTTTTTATGATT...TTCAG|ATA 2 1 3.122
109622304 GT-AG 0 0.0001792618502544 165 rna-XM_042653871.1 20429256 2 35263288 35263452 Macadamia integrifolia 60698 CGG|GTAACTGATT...CCCTCTTTACTC/GGTTTGCTGACC...CTTAG|GAG 0 1 4.506
109622305 GT-AG 0 1.000000099473604e-05 113 rna-XM_042653871.1 20429256 3 35263058 35263170 Macadamia integrifolia 60698 ATG|GTAAAGTTCG...GTTGACTTACTG/GGTTGACTTACT...TGCAG|TAT 0 1 6.481
109622306 GT-AG 0 2.797641422940329e-05 86 rna-XM_042653871.1 20429256 4 35262793 35262878 Macadamia integrifolia 60698 TGG|GTGTGTACCA...TTTTTTTTAATG/TTGTGTCTGATT...TTCAG|TGG 2 1 9.502
109622307 GT-AG 0 1.000000099473604e-05 82 rna-XM_042653871.1 20429256 5 35261768 35261849 Macadamia integrifolia 60698 GAG|GTGATTATTG...TGTATTTTGATT/TTTTGATTCATT...TGTAG|GAA 0 1 25.418
109622308 GT-AG 0 1.000000099473604e-05 86 rna-XM_042653871.1 20429256 6 35261584 35261669 Macadamia integrifolia 60698 AAG|GTAAGTGGAA...CATATTTTATTT/ACATATTTTATT...GACAG|GAC 2 1 27.072
109622309 GT-AG 0 1.000000099473604e-05 124 rna-XM_042653871.1 20429256 7 35261039 35261162 Macadamia integrifolia 60698 CAG|GTAAATGGAT...ACTCTTTTGACC/ACTCTTTTGACC...TTCAG|GGA 0 1 34.177
109622310 GT-AG 0 0.0008131471775192 101 rna-XM_042653871.1 20429256 8 35260338 35260438 Macadamia integrifolia 60698 CAA|GTATGTAATT...GCCTGCTTATCA/GAGTGACTGACT...CTTAG|GCC 0 1 44.304
109622311 GT-AG 0 1.000000099473604e-05 119 rna-XM_042653871.1 20429256 9 35260039 35260157 Macadamia integrifolia 60698 GAG|GTAAAGATCT...TTTGCTTTCATG/TTTGCTTTCATG...GGCAG|GTT 0 1 47.342
109622312 GT-AG 0 1.000000099473604e-05 1031 rna-XM_042653871.1 20429256 10 35258450 35259480 Macadamia integrifolia 60698 CAG|GTGAGTGATG...GGGTCTTTGATT/GGGTCTTTGATT...TGTAG|GTG 0 1 56.759
109622313 GT-AG 0 3.8830136995614654e-05 1387 rna-XM_042653871.1 20429256 11 35256952 35258338 Macadamia integrifolia 60698 GGG|GTAAGCATCA...CAATTTATAACA/CAATTTATAACA...TGCAG|ATT 0 1 58.633
109622314 GT-AG 0 0.0060209385435495 84 rna-XM_042653871.1 20429256 12 35256749 35256832 Macadamia integrifolia 60698 TAG|GTATTTTTCA...GTCCCTATATCT/CTTCTATTCACT...TTCAG|GGA 2 1 60.641
109622315 GT-AG 0 8.36572191707415e-05 448 rna-XM_042653871.1 20429256 13 35254677 35255124 Macadamia integrifolia 60698 GAG|GTACGCATAA...GATGTTTTAGAG/TGATTGCTAACT...TGTAG|GTT 0 1 88.051

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