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

✎ 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
209597962 GT-AG 0 1.000000099473604e-05 757 rna-XM_014655966.2 37957399 1 24564220 24564976 Vigna radiata 157791 AGA|GTGAGTGGTC...TTTTCCTGATCT/ATTTTCCTGATC...TGCAG|GTG 0 1 2.479
209597963 GT-AG 0 1.000000099473604e-05 284 rna-XM_014655966.2 37957399 2 24563740 24564023 Vigna radiata 157791 GAG|GTGAAGAAGC...GTTACCATAATC/ATTTGGCTAACA...ATCAG|GCA 1 1 8.479
209597964 GT-AG 0 1.000000099473604e-05 105 rna-XM_014655966.2 37957399 3 24563411 24563515 Vigna radiata 157791 GAG|GTCAGTTCAT...TACTTTTTGATC/TACTTTTTGATC...TTAAG|GAT 0 1 15.335
209597965 GT-AG 0 1.02658426862033e-05 372 rna-XM_014655966.2 37957399 4 24562936 24563307 Vigna radiata 157791 CTG|GTAAGTAATT...CTGTCCTTATTT/CCTGTCCTTATT...TGCAG|TTC 1 1 18.488
209597966 GT-AG 0 2.2862263369010373e-05 1530 rna-XM_014655966.2 37957399 5 24561234 24562763 Vigna radiata 157791 AAA|GTAGGTGTTA...GATTATTTAATC/GATTATTTAATC...GACAG|AAT 2 1 23.753
209597967 GT-AG 0 0.000456455706027 88 rna-XM_014655966.2 37957399 6 24560879 24560966 Vigna radiata 157791 GAG|GTATTTGGTC...TATTTGTTAATT/TATTTGTTAATT...CACAG|GTA 2 1 31.925
209597968 GT-AG 0 1.000000099473604e-05 425 rna-XM_014655966.2 37957399 7 24560108 24560532 Vigna radiata 157791 AAG|GTTTGAAATT...TTTTTCTCATTT/TTTTTTCTCATT...GACAG|AGG 0 1 42.516
209597969 GT-AG 0 1.000000099473604e-05 106 rna-XM_014655966.2 37957399 8 24559864 24559969 Vigna radiata 157791 CAA|GTGAGTACAA...TAACCTGTACTA/ATGTTGGTAATC...TTCAG|GTT 0 1 46.74
209597970 GT-AG 0 1.000000099473604e-05 104 rna-XM_014655966.2 37957399 9 24559634 24559737 Vigna radiata 157791 TTG|GTAGAGTCCC...TTTTCCTTCTAA/TTCCTTCTAACA...TGAAG|GTG 0 1 50.597
209597971 GT-AG 0 1.397968310033953e-05 107 rna-XM_014655966.2 37957399 10 24559314 24559420 Vigna radiata 157791 GAT|GTAAGTAAGA...TAGCTTTTAGTT/CATTTGTTAAAT...ATTAG|ATC 0 1 57.117
209597972 GT-AG 0 1.5735210490310844e-05 202 rna-XM_014655966.2 37957399 11 24558841 24559042 Vigna radiata 157791 AAG|GTATGAAATG...GTCATCTTGAAA/ACTAGTTTTATA...CACAG|GAA 1 1 65.412
209597973 GT-AG 0 0.0079580620620493 88 rna-XM_014655966.2 37957399 12 24558556 24558643 Vigna radiata 157791 GAG|GTATGCTATC...GCTCTTTTAAGC/ACTGTATTTAGA...TCCAG|GTT 0 1 71.442
209597974 GT-AG 0 1.000000099473604e-05 329 rna-XM_014655966.2 37957399 13 24557876 24558204 Vigna radiata 157791 GAG|GTAGGATTAA...AATGCTTTATTA/TAATGCTTTATT...CTCAG|ATA 0 1 82.185

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