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

✎ 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
14303022 GT-AG 0 0.0033817886432363 248 Araha.0049s0015.1.v1.1 2637813 1 39564 39811 Arabidopsis halleri 81970 GTG|GTATGTTCGA...TTCTCTGTGATA/GTTAGGCTTATA...CTCAG|GGG 2 1 23.176
14303023 GT-AG 0 0.0001599265260669 99 Araha.0049s0015.1.v1.1 2637813 2 39930 40028 Arabidopsis halleri 81970 AAT|GTAGGCATAT...TTCTATTTATTT/GTTCTATTTATT...TATAG|GTA 0 1 28.994
14303024 GT-AG 0 1.000000099473604e-05 108 Araha.0049s0015.1.v1.1 2637813 3 40137 40244 Arabidopsis halleri 81970 AAT|GTAAGTAGTC...CTCCCCCTGATT/CATATACTAATT...TTCAG|CAT 0 1 34.32
14303025 GT-AG 0 0.0002043152158551 79 Araha.0049s0015.1.v1.1 2637813 4 40418 40496 Arabidopsis halleri 81970 CTG|GTATAACGCA...TTTACCTTACTA/TTTTACCTTACT...TACAG|GTT 2 1 42.85
14303026 GT-AG 0 1.000000099473604e-05 89 Araha.0049s0015.1.v1.1 2637813 5 40597 40685 Arabidopsis halleri 81970 CAG|GTAAAATGCT...ATGATTTTAATT/ATGATTTTAATT...TTCAG|AGA 0 1 47.781
14303027 GT-AG 0 1.000000099473604e-05 109 Araha.0049s0015.1.v1.1 2637813 6 40761 40869 Arabidopsis halleri 81970 AAG|GTACAGATTT...AGATTTTTACTG/AAGATTTTTACT...GGCAG|GTC 0 1 51.479
14303028 GT-AG 0 5.555582960356998e-05 136 Araha.0049s0015.1.v1.1 2637813 7 41001 41136 Arabidopsis halleri 81970 GAC|GTAAGGATCT...TTTTCTTTAATT/TTAATTCTCATC...CACAG|ATA 2 1 57.939
14303029 GT-AG 0 1.000000099473604e-05 85 Araha.0049s0015.1.v1.1 2637813 8 41273 41357 Arabidopsis halleri 81970 CAG|GTTAAAACCA...TTTTTCCTATTA/TTTTTTCCTATT...TTAAG|GAA 0 1 64.645
14303030 GT-AG 0 1.000000099473604e-05 81 Araha.0049s0015.1.v1.1 2637813 9 41478 41558 Arabidopsis halleri 81970 CAG|GTAAGCGGGC...TTTGTTTTGACC/TTTGTTTTGACC...TTTAG|GTG 0 1 70.562
14303031 GT-AG 0 1.000000099473604e-05 93 Araha.0049s0015.1.v1.1 2637813 10 41706 41798 Arabidopsis halleri 81970 CAG|GTCATATGCT...TGATTTTCAACT/ATGATTTTCAAC...AACAG|ACA 0 1 77.811
14303032 GT-AG 0 9.578257325536e-05 98 Araha.0049s0015.1.v1.1 2637813 11 41904 42001 Arabidopsis halleri 81970 TTG|GTAAGCATTT...GTTTTCTTCTCC/TCAGGATTCAGT...TGCAG|AGT 0 1 82.988
14303033 GT-AG 0 1.000000099473604e-05 325 Araha.0049s0015.1.v1.1 2637813 12 42104 42428 Arabidopsis halleri 81970 AAG|GTAGGTCAAA...CTAATCTAAACT/GAGGAACTAATC...AACAG|GAT 0 1 88.018

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