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

✎ 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
92256245 GT-AG 0 6.007795574371413e-05 88 rna-XM_021424199.1 17265387 1 1660133 1660220 Herrania umbratica 108875 TAG|GTTCATTTCG...TAACTTTTATTT/TTTTTTTTCATT...TTAAG|GAA 1 1 21.793
92256246 GT-AG 0 0.0056043816779106 266 rna-XM_021424199.1 17265387 2 1659707 1659972 Herrania umbratica 108875 CAT|GTACGCATTA...TAAATCTTATAT/TCTTGTTTAATT...TACAG|GGT 2 1 27.51
92256247 GT-AG 0 1.000000099473604e-05 556 rna-XM_021424199.1 17265387 3 1659102 1659657 Herrania umbratica 108875 GAG|GTAAAACTAT...ATTATTTTATTG/TATTATTTTATT...GATAG|ATT 0 1 29.26
92256248 GT-AG 0 1.000000099473604e-05 1226 rna-XM_021424199.1 17265387 4 1657762 1658987 Herrania umbratica 108875 GAG|GTGGGTCCGT...AATTGCATGATT/TGGTGACTGATG...TGCAG|CTA 0 1 33.333
92256249 GT-AG 0 1.2574553514235011e-05 1377 rna-XM_021424199.1 17265387 5 1655962 1657338 Herrania umbratica 108875 AAG|GTGTGTATAC...AGATCTTTATTA/TCTTTATTAATG...TGCAG|ACA 0 1 48.446
92256250 GT-AG 0 0.0098704769650029 115 rna-XM_021424199.1 17265387 6 1655460 1655574 Herrania umbratica 108875 ACG|GTATATATTT...GTAACTATAACT/ATTGTACTTAAG...TGCAG|ACT 0 1 62.272
92256251 GT-AG 0 1.000000099473604e-05 231 rna-XM_021424199.1 17265387 7 1655133 1655363 Herrania umbratica 108875 AAG|GTGAGCATAA...GCATTCTGAATA/TTATGACTGATG...TATAG|GTT 0 1 65.702
92256252 GT-AG 0 1.000000099473604e-05 388 rna-XM_021424199.1 17265387 8 1654629 1655016 Herrania umbratica 108875 ATG|GTAAGTAAGC...TTTCTCTCAACT/TTTTCTCTCAAC...AACAG|GCA 2 1 69.846
92256253 GT-AG 0 0.0349259409253581 117 rna-XM_021424199.1 17265387 9 1654344 1654460 Herrania umbratica 108875 AAG|GTATATCTAT...TGATCCTTAATA/ATTTTGGTGATC...AACAG|TTT 2 1 75.849
92256254 GT-AG 0 1.193802106466381e-05 105 rna-XM_021424199.1 17265387 10 1654079 1654183 Herrania umbratica 108875 GCA|GTAAGTAACT...GTTTCCCTATCA/TGCTTCTTCATT...TTTAG|GAT 0 1 81.565
92256255 GT-AG 0 1.000000099473604e-05 88 rna-XM_021424199.1 17265387 11 1653793 1653880 Herrania umbratica 108875 AGG|GTACGAGAAC...AATACCTTAACT/TTAATTCTAACT...TCTAG|GGT 0 1 88.639
92256256 GT-AG 0 1.000000099473604e-05 248 rna-XM_021424199.1 17265387 12 1653416 1653663 Herrania umbratica 108875 AGG|GTAAGATCTG...TCCTCTTTGCCA/ATAATAATAATT...ATCAG|GTG 0 1 93.248
92256257 GT-AG 0 1.000000099473604e-05 95 rna-XM_021424199.1 17265387 13 1653242 1653336 Herrania umbratica 108875 TAG|GTGAGCCCCA...GTGGTTTTAATG/TGTCTTCTAATA...AGCAG|GAG 1 1 96.07

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