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

✎ 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
38394211 GT-AG 0 0.0003999791999469 801 Ceric.01G067300.1.v2.1 7347029 1 139468453 139469253 Ceratopteris richardii 49495 TCA|GTAAGCTCCC...ATAACTTTCTTC/CACCAACTTACA...AACAG|GGA 2 1 12.125
38394212 GT-AG 0 1.000000099473604e-05 78 Ceric.01G067300.1.v2.1 7347029 2 139468245 139468322 Ceratopteris richardii 49495 GAA|GTAAGTTGCC...AATACATTTACA/AATACATTTACA...TGCAG|CTT 0 1 17.857
38394213 GT-AG 0 1.000000099473604e-05 82 Ceric.01G067300.1.v2.1 7347029 3 139467909 139467990 Ceratopteris richardii 49495 CAG|GTAATGCATG...TTGTGCTTGATT/TTTGTTCTCATT...TTCAG|TCA 2 1 29.056
38394214 GT-AG 0 0.000274204781297 90 Ceric.01G067300.1.v2.1 7347029 4 139467614 139467703 Ceratopteris richardii 49495 CAG|GTTTTCATCT...GATTTCATGATT/GAGGATTTCATG...TGTAG|GAT 0 1 38.095
38394215 GT-AG 0 1.000000099473604e-05 61 Ceric.01G067300.1.v2.1 7347029 5 139467512 139467572 Ceratopteris richardii 49495 CAG|GTCTGTAATA...GTAATTTTACTT/ATTTTACTTATA...CCCAG|TCG 2 1 39.903
38394216 GT-AG 0 0.0002768247391623 14539 Ceric.01G067300.1.v2.1 7347029 6 139452844 139467382 Ceratopteris richardii 49495 CAG|GTACTTTCTC...CTATCTTTGCTC/TCTTTGCTCAAT...GACAG|ACC 2 1 45.591
38394217 GT-AG 0 5.2951748780277706e-05 113 Ceric.01G067300.1.v2.1 7347029 7 139452358 139452470 Ceratopteris richardii 49495 CAG|GTTAACTTTC...TAATTTTTGATG/TACATTTTAATT...TCCAG|GAT 0 1 62.037
38394218 GT-AG 0 1.000000099473604e-05 125 Ceric.01G067300.1.v2.1 7347029 8 139452138 139452262 Ceratopteris richardii 49495 CAG|GTACAGGTGC...TCTTCTGTGATG/CTGAAGTTCACT...TACAG|GTT 2 1 66.226
38394219 GT-AG 0 0.000247370979538 9320 Ceric.01G067300.1.v2.1 7347029 9 139442601 139451920 Ceratopteris richardii 49495 TAT|GTAAGCATAA...AATTTCTCATCA/TAATTTCTCATC...AACAG|CCA 0 1 75.794
38394220 GT-AG 0 0.0028366914388357 124 Ceric.01G067300.1.v2.1 7347029 10 139442354 139442477 Ceratopteris richardii 49495 ATG|GTATATTAAA...TATTTTTTGTTT/TGATAACTTATT...CCCAG|AGG 0 1 81.217
38394221 GT-AG 0 0.0365749500283731 90 Ceric.01G067300.1.v2.1 7347029 11 139442165 139442254 Ceratopteris richardii 49495 AAG|GTTTCTCTTT...GATTTCTGGATC/TTCTGGATCATG...TTCAG|ACA 0 1 85.582
38394222 GT-AG 0 1.000000099473604e-05 187 Ceric.01G067300.1.v2.1 7347029 12 139441765 139441951 Ceratopteris richardii 49495 AAG|GTACAAAATT...TTAGGCTTATTC/CATGTTCTAATA...TTTAG|GTG 0 1 94.974

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