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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
24940394 GT-AG 0 8.707182530293041e-05 784 Brast01G252000.1.v0.1.stacei 4793061 2 17624944 17625727 Brachypodium stacei 1071399 CAG|GTATAATCTT...CATTGTTTAAAA/TTACTACTTATG...TGCAG|GTT 0 1 15.108
24940395 GT-AG 0 0.0026246163928808 796 Brast01G252000.1.v0.1.stacei 4793061 3 17623731 17624526 Brachypodium stacei 1071399 AGG|GTATACAAAG...TTTACATTGATT/CTTGTATTGACC...TGCAG|GCT 0 1 24.982
24940396 GT-AG 0 0.0004040572176953 945 Brast01G252000.1.v0.1.stacei 4793061 4 17622399 17623343 Brachypodium stacei 1071399 GAG|GTATGTCAAC...ACCACTTTAACT/TTTATTTTCATT...TGAAG|TTG 0 1 34.146
24940397 GT-AG 0 0.001074979814855 1867 Brast01G252000.1.v0.1.stacei 4793061 5 17620292 17622158 Brachypodium stacei 1071399 GAG|GTATACCAAC...AGCATATTAACT/TATTAACTTACC...TTTAG|TTT 0 1 39.83
24940398 GT-AG 0 4.951100638321827e-05 3109 Brast01G252000.1.v0.1.stacei 4793061 6 17616979 17620087 Brachypodium stacei 1071399 GAG|GTAGTTCTTA...ATGTTCTGAGCT/CTTCTACTTATT...TGCAG|ATA 0 1 44.66
24940399 GT-AG 0 0.0003397910033357 1576 Brast01G252000.1.v0.1.stacei 4793061 7 17615043 17616618 Brachypodium stacei 1071399 GAG|GTAATCTTTC...GGTGTATTAATT/ATTGTATTTATG...TGTAG|GTG 0 1 53.185
24940400 GT-AG 0 1.000000099473604e-05 449 Brast01G252000.1.v0.1.stacei 4793061 8 17614171 17614619 Brachypodium stacei 1071399 CAG|GTGTGTCCTT...TCTGGTTTAATC/TAAGTACTAATT...TGTAG|TCA 0 1 63.202
24940401 GT-AG 0 3.8353438868639045e-05 355 Brast01G252000.1.v0.1.stacei 4793061 9 17613615 17613969 Brachypodium stacei 1071399 ACA|GTAAGTGGGA...TTTTTCTTGATT/TTTTTCTTGATT...ATCAG|GTC 0 1 67.961
24940402 GT-AG 0 1.000000099473604e-05 761 Brast01G252000.1.v0.1.stacei 4793061 10 17612605 17613365 Brachypodium stacei 1071399 TTG|GTAATAACCT...ATTCCTTTTGTT/TAGTAATTAATA...TGCAG|TTA 0 1 73.857
24940403 GC-AG 0 1.000000099473604e-05 192 Brast01G252000.1.v0.1.stacei 4793061 11 17612323 17612514 Brachypodium stacei 1071399 AAG|GCAAGTTTTT...TACACCTTTGCA/CTCATACTGATA...TCTAG|GTT 0 1 75.989
24940404 GT-AG 0 1.000000099473604e-05 79 Brast01G252000.1.v0.1.stacei 4793061 12 17612199 17612277 Brachypodium stacei 1071399 AAG|GTGATTATTC...TTTTCCATAATG/AATGTGCTTACT...TGCAG|GGA 0 1 77.054
24955562 GT-AG 0 1.000000099473604e-05 76 Brast01G252000.1.v0.1.stacei 4793061 1 17626006 17626081 Brachypodium stacei 1071399 GAA|GTGCGAGTTC...CTGTTCTGAGCA/TTTTCTTTCAGT...TGCAG|GAT   0 9.425

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