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

✎ 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
38393239 GT-AG 0 0.0007591750157888 504 Ceric.01G052200.1.v2.1 7346934 1 112037754 112038257 Ceratopteris richardii 49495 AAG|GTCTCATCAA...CTAATATTGACT/TATTGACTGACT...TACAG|TTG 0 1 2.882
38393240 GT-AG 0 1.0471662001621158e-05 9309 Ceric.01G052200.1.v2.1 7346934 2 112039283 112048591 Ceratopteris richardii 49495 CAG|GTAGAGTTTT...ATTTACTTGAAA/GCTCATTTGATT...GACAG|CAC 2 1 21.113
38393241 GT-AG 0 1.8476424484668706e-05 86 Ceric.01G052200.1.v2.1 7346934 3 112048708 112048793 Ceratopteris richardii 49495 AAG|GTACATGTAT...GTAAATTTAACT/TACATATTTACT...AACAG|AAT 1 1 23.177
38393242 GT-AG 0 4.4484339949310255e-05 85 Ceric.01G052200.1.v2.1 7346934 4 112048860 112048944 Ceratopteris richardii 49495 AAG|GTATGAATCA...TACTCATTATTA/TCATTATTAATG...TTCAG|ATC 1 1 24.351
38393243 GT-AG 0 0.0161077255869142 112 Ceric.01G052200.1.v2.1 7346934 5 112049004 112049115 Ceratopteris richardii 49495 CAG|GTATCACTTG...TGTGCTATAATG/ATGATATTGATG...TGAAG|GCA 0 1 25.4
38393244 GT-AG 0 1.000000099473604e-05 76 Ceric.01G052200.1.v2.1 7346934 6 112052212 112052287 Ceratopteris richardii 49495 AAG|GTGATTTATT...ATATCTTTGATC/CTACTTCTAACT...TGAAG|ATT 0 1 80.47
38393245 GT-AG 0 0.0030685042727073 74 Ceric.01G052200.1.v2.1 7346934 7 112052401 112052474 Ceratopteris richardii 49495 TAG|GTACATTTTT...TCATCTCTAACG/CACATTCTCATC...AACAG|ATT 2 1 82.48
38393246 GT-AG 0 1.000000099473604e-05 95 Ceric.01G052200.1.v2.1 7346934 8 112052653 112052747 Ceratopteris richardii 49495 CAG|GTACTTGATC...CATGCTTTCAAA/AAAAACTTCATT...TCCAG|ATT 0 1 85.646
38393247 GT-AG 0 1.2309828450881349e-05 70 Ceric.01G052200.1.v2.1 7346934 9 112052862 112052931 Ceratopteris richardii 49495 AAG|GTAGTGTATG...GTTCCTTTAACT/CTTTAACTCATA...TTCAG|GGT 0 1 87.673
38393248 GT-AG 0 2.9321119025791335e-05 760 Ceric.01G052200.1.v2.1 7346934 10 112053176 112053935 Ceratopteris richardii 49495 AAG|GTATGAACTG...ATTTCCATAAAT/TTTCTGTTCATT...ACTAG|GTA 1 1 92.014
38393249 GT-AG 0 0.0029381412353957 69 Ceric.01G052200.1.v2.1 7346934 11 112054130 112054198 Ceratopteris richardii 49495 CAG|GTATTTTGTG...GACTCCATGATA/TGATATCTAATT...TACAG|GCC 0 1 95.464
38393250 GT-AG 0 0.0005895742999499 85 Ceric.01G052200.1.v2.1 7346934 12 112054393 112054477 Ceratopteris richardii 49495 CAG|GTTTGCTCTC...ATATCCTTCTCA/ATCCTTCTCATT...TGCAG|CCT 2 1 98.915

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