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

✎ 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
24706429 GT-AG 0 0.000173656253036 151 Brame.01UG505800.1.v1.1 4721440 1 101870330 101870480 Brachypodium mexicanum 52141 CCC|GTAAGCATCA...TGTTGTTTGAAT/TTGAATCTCATT...TCAAG|GAC 0 1 3.082
24706430 GT-AG 0 0.2263053339520402 642 Brame.01UG505800.1.v1.1 4721440 2 101870544 101871185 Brachypodium mexicanum 52141 AAG|GTTTCCAGAC...TTTTTCTTAGCA/ATTTTTCTTAGC...TGCAG|CTC 0 1 4.16
24706431 GT-AG 0 0.0540193823046527 465 Brame.01UG505800.1.v1.1 4721440 3 101871264 101871728 Brachypodium mexicanum 52141 TGG|GTATTTTTCT...ACCTTCTTCATT/ACCTTCTTCATT...TGTAG|GCA 0 1 5.496
24706432 GT-AG 0 0.0002138308605477 244 Brame.01UG505800.1.v1.1 4721440 4 101871821 101872064 Brachypodium mexicanum 52141 CAA|GTATGACCGT...ATGTTTTTAACC/ATGTTTTTAACC...TACAG|GAA 2 1 7.071
24706433 GT-AG 0 2.82074005671185e-05 749 Brame.01UG505800.1.v1.1 4721440 5 101872168 101872916 Brachypodium mexicanum 52141 GAG|GTGGCTATTT...ACTCTCTAAATT/TTCTACTTTATT...TGTAG|GCA 0 1 8.834
24706434 GT-AG 0 0.0158289137998882 1132 Brame.01UG505800.1.v1.1 4721440 6 101873070 101874201 Brachypodium mexicanum 52141 AGG|GTATGTTTTA...GTACTCCTAATA/GTACTCCTAATA...TGCAG|GTA 0 1 11.454
24706435 GT-AG 0 8.580263850496689 91 Brame.01UG505800.1.v1.1 4721440 7 101874861 101874951 Brachypodium mexicanum 52141 GAG|GTATCCCTTA...TCATCTTTCTCT/CTGCATATCATC...TTCAG|ACA 2 1 22.736
24706436 GT-AG 0 1.000000099473604e-05 1784 Brame.01UG505800.1.v1.1 4721440 8 101875442 101877225 Brachypodium mexicanum 52141 ATG|GTAAGCCCAG...TTTTCTTTTTCT/AATTATTTGATT...TGCAG|GAT 0 1 31.125
24706437 GT-AG 0 0.0005605854890977 280 Brame.01UG505800.1.v1.1 4721440 9 101877714 101877993 Brachypodium mexicanum 52141 ATG|GTATGTACTT...ATATGTTTGACT/ATATGTTTGACT...TGTAG|TGA 2 1 39.48
24706438 GT-AG 0 1.000000099473604e-05 134 Brame.01UG505800.1.v1.1 4721440 10 101878793 101878926 Brachypodium mexicanum 52141 GTT|GTAAGAATGA...TGTACCTAATAT/TATTTTCTGAAG...TGCAG|GAA 0 1 53.159
24706439 GT-AG 0 0.0001568600227493 82 Brame.01UG505800.1.v1.1 4721440 11 101879612 101879693 Brachypodium mexicanum 52141 AAG|GTAGGCTACA...TATGCTTTTACA/TATGCTTTTACA...GTCAG|ATA 1 1 64.886
24706440 GT-AG 0 1.000000099473604e-05 82 Brame.01UG505800.1.v1.1 4721440 12 101880755 101880836 Brachypodium mexicanum 52141 AGG|GTAAAACTTA...AATTTCTTAGTC/CGTGTTTTCACG...ACTAG|GTT 0 1 83.051
24706441 GT-AG 0 3.468190530780732e-05 268 Brame.01UG505800.1.v1.1 4721440 13 101881293 101881560 Brachypodium mexicanum 52141 CAG|GTATATGCAT...TTGCCCCTAAAA/AATAATTTTATG...TACAG|GTT 0 1 90.858

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