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)

11 rows where transcript_id = 4793031

✎ 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
24939974 GT-AG 0 0.000133118006662 68 Brast01G090400.1.v0.1.stacei 4793031 1 5351521 5351588 Brachypodium stacei 1071399 CCG|GTCTGCTCCC...AATCTCTATGCG/TCAAGACCAATC...GGGAG|GTG 1 1 18.419
24939975 GT-AG 0 5.926139446098161e-05 76 Brast01G090400.1.v0.1.stacei 4793031 2 5349955 5350030 Brachypodium stacei 1071399 AAG|GTATAATGCT...GTTGTTTAAGCT/TGTTGTTTAAGC...TGTAG|GAA 0 1 52.766
24939976 GT-AG 0 1.000000099473604e-05 96 Brast01G090400.1.v0.1.stacei 4793031 3 5349772 5349867 Brachypodium stacei 1071399 CTG|GTGAGATTTT...TTCTCCTTATAA/GTTCTCCTTATA...TGTAG|GTA 0 1 54.772
24939977 GT-AG 0 1.000000099473604e-05 55 Brast01G090400.1.v0.1.stacei 4793031 4 5349456 5349510 Brachypodium stacei 1071399 CTG|GTGCAGGAAG...GGGTTCTGGGGT/CTGGGGTCTACT...GGAAG|TAC 0 1 60.788
24939978 GT-AG 0 1.000000099473604e-05 84 Brast01G090400.1.v0.1.stacei 4793031 5 5349039 5349122 Brachypodium stacei 1071399 AGG|GTAAGTGACT...TTTGCTTGGACA/ACAATTCTAACA...TTTAG|GCT 0 1 68.465
24939979 GT-AG 0 0.0023141083155728 672 Brast01G090400.1.v0.1.stacei 4793031 6 5348202 5348873 Brachypodium stacei 1071399 CAG|GTACTTTTGC...TTTCTCTTATAT/CTTATATTTATC...TGCAG|CGC 0 1 72.268
24939980 GT-AG 0 3.030525948219464e-05 197 Brast01G090400.1.v0.1.stacei 4793031 7 5347710 5347906 Brachypodium stacei 1071399 CAG|GTATGATGTT...AAGGTCTGAGTT/TAAGGTCTGAGT...TTCAG|GAC 1 1 79.069
24939981 GT-AG 0 0.000316895739607 272 Brast01G090400.1.v0.1.stacei 4793031 8 5347223 5347494 Brachypodium stacei 1071399 CAT|GTAAATACCG...ATATCCTTAATT/TAATTTCTCAGA...TGCAG|GTG 0 1 84.025
24939982 GT-AG 0 1.000000099473604e-05 217 Brast01G090400.1.v0.1.stacei 4793031 9 5346680 5346896 Brachypodium stacei 1071399 ATG|GTTCATTCCT...CATCTCTCATTT/CCATCTCTCATT...GTTAG|GAA 2 1 91.54
24939983 GT-AG 0 1.000000099473604e-05 83 Brast01G090400.1.v0.1.stacei 4793031 10 5346568 5346650 Brachypodium stacei 1071399 TAG|GTCTGATATC...CTCTTCTGAAAT/CACATTCTAATA...TGCAG|TGA 1 1 92.208
24939984 GT-AG 0 1.000000099473604e-05 127 Brast01G090400.1.v0.1.stacei 4793031 11 5346201 5346327 Brachypodium stacei 1071399 ATG|GTCAGCCATC...TGGTTTTTCACC/TGGTTTTTCACC...TGCAG|GCA 1 1 97.741

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