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

✎ 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
213116500 GT-AG 0 0.0003037603414493 7989 rna-XM_008659233.3 38490450 1 79459104 79467092 Zea mays 4577 GAG|GTCACTCTCT...GTTCTTTTAATG/TTTTAATTCATG...TGTAG|ATA 1 1 3.525
213116501 GT-AG 0 1.000000099473604e-05 677 rna-XM_008659233.3 38490450 2 79458327 79459003 Zea mays 4577 ACT|GTAAGAACTA...CAGGCTTCAACT/CTTCAACTAAAA...TTCAG|GCA 2 1 5.957
213116502 GT-AG 0 1.000000099473604e-05 5910 rna-XM_008659233.3 38490450 3 79452308 79458217 Zea mays 4577 CAG|GTGATGCACT...CCTCTTTTATCA/TCTTTTATCATA...TGCAG|GAA 0 1 8.607
213116503 GT-AG 0 1.781457807771772e-05 1306 rna-XM_008659233.3 38490450 4 79449499 79450804 Zea mays 4577 CAG|GTACTGTTAA...TTTCCTTTCATT/ATTTCACTCATT...GCTAG|GTC 0 1 45.15
213116504 GT-AG 0 1.0926323542197696 102 rna-XM_008659233.3 38490450 5 79449154 79449255 Zea mays 4577 CAG|GTATCTTGTA...AATCTCATAACT/CTCTTTCTTATT...GACAG|ATC 0 1 51.058
213116505 GT-AG 0 0.1302015853768595 1274 rna-XM_008659233.3 38490450 6 79447565 79448838 Zea mays 4577 CAA|GTATGCTCTC...TTGTTCTTTATT/TTGTTCTTTATT...TTTAG|GCT 0 1 58.716
213116506 GT-AG 0 1.000000099473604e-05 249 rna-XM_008659233.3 38490450 7 79447076 79447324 Zea mays 4577 AAG|GTATTGAAAC...TTGTACTTATTT/TTTGTACTTATT...TTTAG|GTG 0 1 64.551
213116507 GT-AG 0 5.08209935506749e-05 77 rna-XM_008659233.3 38490450 8 79446714 79446790 Zea mays 4577 AAA|GTAAGCATAA...CTGGCCTTGTCA/GTGAGATTAACC...GACAG|GAA 0 1 71.481
213116508 GT-AG 0 1.000000099473604e-05 1698 rna-XM_008659233.3 38490450 9 79444794 79446491 Zea mays 4577 CAG|GTGATCCACC...TCATCCTTATTC/ATCATCCTTATT...TGCAG|GCT 0 1 76.878
213116509 GT-AG 0 1.000000099473604e-05 122 rna-XM_008659233.3 38490450 10 79444510 79444631 Zea mays 4577 AAG|GTGAGGTCCG...TTTTATTTATAA/CTTTTATTTATA...TTTAG|GTT 0 1 80.817
213116510 GT-AG 0 1.000000099473604e-05 355 rna-XM_008659233.3 38490450 11 79444020 79444374 Zea mays 4577 GAG|GTAATGTCAT...GACTCCATAATT/TATGGTTTAACT...GCCAG|TTG 0 1 84.099
213116511 GT-AG 0 7.425155104002308e-05 98 rna-XM_008659233.3 38490450 12 79443685 79443782 Zea mays 4577 CAG|GTATGTGCTC...TTTCCTGTAGTT/TGTAGTTTAACG...TTCAG|ATT 0 1 89.861
213116512 GT-AG 0 1.000000099473604e-05 463 rna-XM_008659233.3 38490450 13 79443048 79443510 Zea mays 4577 AAG|GTAAATATAT...ATTATTTTATCT/TTTTATCTCATG...TGCAG|GGT 0 1 94.092

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