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

✎ 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
63298971 GT-AG 0 0.4701630246269824 102 Dioal.01G022300.1.v2.1 11523779 1 7167580 7167681 Dioscorea alata 55571 AAG|GTATCATCTC...TTGTTTTTGATT/TTGTTTTTGATT...TGCAG|ATT 0 1 9.711
63298972 GT-AG 0 1.000000099473604e-05 77 Dioal.01G022300.1.v2.1 11523779 2 7166746 7166822 Dioscorea alata 55571 AAA|GTAATGCAGC...TTTTTTCTAATA/TTTTTTCTAATA...TTAAG|GAC 1 1 42.826
63298973 GT-AG 0 0.0177658719686585 397 Dioal.01G022300.1.v2.1 11523779 3 7166216 7166612 Dioscorea alata 55571 CAG|GTATTCTGAG...TGTTACTTGACA/TTTAATTTAATT...TAAAG|GTT 2 1 48.644
63298974 GT-AG 0 1.000000099473604e-05 128 Dioal.01G022300.1.v2.1 11523779 4 7165970 7166097 Dioscorea alata 55571 GAG|GTAATAAGCA...ATCCTCTCATTT/AATCCTCTCATT...TTTAG|GAA 0 1 53.806
63298975 GT-AG 0 1.000000099473604e-05 105 Dioal.01G022300.1.v2.1 11523779 5 7165766 7165870 Dioscorea alata 55571 GTT|GTGAGAACAC...TTTGTTTTGAAT/TTTGTTTTGAAT...GCCAG|GTG 0 1 58.136
63298976 GT-AG 0 1.000000099473604e-05 91 Dioal.01G022300.1.v2.1 11523779 6 7165396 7165486 Dioscorea alata 55571 CAG|GTCTGAAATT...TTATCTTTAATT/TTATCTTTAATT...TCCAG|AGA 0 1 70.341
63298977 GT-AG 0 1.000000099473604e-05 2655 Dioal.01G022300.1.v2.1 11523779 7 7162633 7165287 Dioscorea alata 55571 ATG|GTGAGTAGAA...TATTCTTTTTTT/CAATCACTAAAT...CCTAG|GCT 0 1 75.066
63298978 GT-AG 0 0.0003650532613953 79 Dioal.01G022300.1.v2.1 11523779 8 7162482 7162560 Dioscorea alata 55571 GAT|GTAAATGTTA...TAATTTTTAACT/TAATTTTTAACT...GAAAG|GTT 0 1 78.215
63298979 GT-AG 0 0.0012693961228093 1265 Dioal.01G022300.1.v2.1 11523779 9 7161130 7162394 Dioscorea alata 55571 CAG|GTATGTATCA...TTTTTCTTCTTT/ATGATGTTAATG...TGTAG|ACA 0 1 82.021
63298980 GT-AG 0 0.0459219766302871 98 Dioal.01G022300.1.v2.1 11523779 10 7160960 7161057 Dioscorea alata 55571 ACG|GTAACCAGAC...GATGCCTTGATA/AAATTTTTAATT...GACAG|CCA 0 1 85.171
63298981 GT-AG 0 1.000000099473604e-05 8307 Dioal.01G022300.1.v2.1 11523779 11 7152563 7160869 Dioscorea alata 55571 GAG|GTCTTACTAT...ATATCCTTTACA/ATTTTTCTAACA...CTCAG|TGG 0 1 89.108
63298982 GT-AG 0 1.000000099473604e-05 94 Dioal.01G022300.1.v2.1 11523779 12 7152361 7152454 Dioscorea alata 55571 CAG|GTAAGGTTAA...GTGGTTTTATTC/TGTGGTTTTATT...TACAG|GTC 0 1 93.832
63298983 GT-AG 0 4.813324352193196e-05 585 Dioal.01G022300.1.v2.1 11523779 13 7151707 7152291 Dioscorea alata 55571 GAG|GTATGAAATC...TATCTCTTAGTT/CTTGTGATCATT...TGTAG|GTT 0 1 96.85

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