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

✎ 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
125746301 GT-AG 0 0.0001518668996071 94 rna-XM_010251792.2 23121115 1 63153 63246 Nelumbo nucifera 4432 TTG|GTATGGACAT...TGATTCTTGATG/CATTTATTGATT...TTTAG|ATA 1 1 8.213
125746302 GT-AG 0 2.4164228617379986e-05 110 rna-XM_010251792.2 23121115 2 63334 63443 Nelumbo nucifera 4432 ATG|GTAGGTCATT...AGATTCTTAATC/AAGATTCTTAAT...TGTAG|CCA 1 1 11.215
125746303 GT-AG 0 0.0001663635523543 151 rna-XM_010251792.2 23121115 3 63545 63695 Nelumbo nucifera 4432 AAT|GTAAGTTTGT...TTGTTCTTTTCA/GTTCTTTTCACC...GACAG|ACT 0 1 14.7
125746304 GT-AG 0 1.000000099473604e-05 111 rna-XM_010251792.2 23121115 4 63813 63923 Nelumbo nucifera 4432 GAA|GTAATGCCTC...TATATTTTAGTT/ATTTTGTTCATA...TGCAG|AAA 0 1 18.737
125746305 GT-AG 0 0.0045570142041479 97 rna-XM_010251792.2 23121115 5 64006 64102 Nelumbo nucifera 4432 AAG|GTAACTCATT...TATTCTTTAACC/TATTCTTTAACC...TGCAG|CTC 1 1 21.567
125746306 GT-AG 0 1.000000099473604e-05 88 rna-XM_010251792.2 23121115 6 64171 64258 Nelumbo nucifera 4432 CTG|GTAAGTCTGA...TTCTTGTTAACT/TTCTTGTTAACT...GGCAG|ACC 0 1 23.913
125746307 GT-AG 0 2.413205930128672e-05 92 rna-XM_010251792.2 23121115 7 64319 64410 Nelumbo nucifera 4432 CTG|GTAAAGTTGT...TAGTCTTTACTT/TTAGTCTTTACT...CTCAG|AAC 0 1 25.983
125746308 GT-AG 0 1.000000099473604e-05 755 rna-XM_010251792.2 23121115 8 64536 65290 Nelumbo nucifera 4432 CAG|GTGAGCAGTT...ACTGCTTTGATA/GTTAATTTCACT...AGCAG|TGT 2 1 30.297
125746309 GT-AG 0 2.230440627854423e-05 82 rna-XM_010251792.2 23121115 9 65490 65571 Nelumbo nucifera 4432 ATG|GTACTGATTC...GGTTTCTGGATG/CATCATCTAACT...ATCAG|GTG 0 1 37.164
125746310 GT-AG 0 1.000000099473604e-05 102 rna-XM_010251792.2 23121115 10 65710 65811 Nelumbo nucifera 4432 GAG|GTACGAGATG...TAGATTTTATTA/ATAGATTTTATT...TGTAG|ATG 0 1 41.925
125746311 GT-AG 0 0.0004303970146333 119 rna-XM_010251792.2 23121115 11 65902 66020 Nelumbo nucifera 4432 CCG|GTATGGATCT...ATTTTTTTATTT/TATTTTTTTATT...TTCAG|GCT 0 1 45.031
125746312 GT-AG 0 1.000000099473604e-05 106 rna-XM_010251792.2 23121115 12 66978 67083 Nelumbo nucifera 4432 CAG|GTAAGTAAGA...ACACCCTTGACC/TGAATACTTACA...TTTAG|GTG 0 1 78.054
125746313 GT-AG 0 3.404318706797742e-05 124 rna-XM_010251792.2 23121115 13 67392 67515 Nelumbo nucifera 4432 AAG|GTAGTTCTGT...CGGTTTTTGATT/CGGTTTTTGATT...TGCAG|TAT 2 1 88.682

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