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)

14 rows where transcript_id = 38490381

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
213115346 GT-AG 0 1.000000099473604e-05 93 rna-XM_008667149.3 38490381 1 280846740 280846832 Zea mays 4577 TGC|GTAAGTGAAC...CATGCTTTATTG/TCATGCTTTATT...TGCAG|GTC 2 1 1.889
213115347 GT-AG 0 1.000000099473604e-05 85 rna-XM_008667149.3 38490381 2 280851694 280851778 Zea mays 4577 CAG|GTACGTCATG...TGTATGTTAATA/TTAATATTTACA...TGCAG|GAG 0 1 42.336
213115348 GT-AG 0 0.001578931203499 96 rna-XM_008667149.3 38490381 3 280851968 280852063 Zea mays 4577 ATG|GTATTTTATC...GTTGTTTGGAAT/TTCCAATTAATG...CATAG|GTT 0 1 43.909
213115349 GT-AG 0 1.000000099473604e-05 2033 rna-XM_008667149.3 38490381 4 280852179 280854211 Zea mays 4577 CAG|GTAAGCCTCC...AAATTTCTATTT/CAGATGCTAATA...TGCAG|ATG 1 1 44.866
213115350 GT-AG 0 0.0001271042937064 1859 rna-XM_008667149.3 38490381 5 280855272 280857130 Zea mays 4577 TAG|GTATGTGGAG...GATTGCTTAACT/GATTGCTTAACT...TACAG|ATT 2 1 53.686
213115351 GT-AG 0 0.0002921547089922 2009 rna-XM_008667149.3 38490381 6 280857579 280859587 Zea mays 4577 CAG|GTAACTGTTA...TTATTATTATCA/ATTATTATCACT...CCCAG|GAG 0 1 57.414
213115352 GT-AG 0 0.003020297686893 86 rna-XM_008667149.3 38490381 7 280859642 280859727 Zea mays 4577 AAG|GTATTATGTA...AATTTTTTAATC/AATTTTTTAATC...TGCAG|AAA 0 1 57.863
213115353 GT-AG 0 0.0006514688483682 435 rna-XM_008667149.3 38490381 8 280862579 280863013 Zea mays 4577 CAT|GTACGTTGAC...TGTTTCATAATA/AGTTTACTTATG...AACAG|GTG 1 1 81.586
213115354 GT-AG 0 0.0003472228919487 1481 rna-XM_008667149.3 38490381 9 280863128 280864608 Zea mays 4577 TAG|GTATGCCACT...AATACACTAACA/AATACACTAACA...GCCAG|TTA 1 1 82.535
213115355 GT-AG 0 1.000000099473604e-05 340 rna-XM_008667149.3 38490381 10 280864740 280865079 Zea mays 4577 GAG|GTAAATAACG...TACTTCTTGTTC/TGTTGAATTATT...TGCAG|GTT 0 1 83.625
213115356 GC-AG 0 1.000000099473604e-05 3722 rna-XM_008667149.3 38490381 11 280865173 280868894 Zea mays 4577 AAG|GCTTGTCACT...CTTTTTTTAATC/CTTTTTTTAATC...AACAG|GCA 0 1 84.398
213115357 GT-AG 0 1.000000099473604e-05 376 rna-XM_008667149.3 38490381 12 280869168 280869543 Zea mays 4577 AAG|GTACTTAGCT...ATTATCTCACTT/AATTATCTCACT...TACAG|GCT 0 1 86.67
213115358 GT-AG 0 1.000000099473604e-05 713 rna-XM_008667149.3 38490381 13 280870028 280870740 Zea mays 4577 GAG|GTAAGACAAA...TTCTCATTGATG/CTTGTTCTCATT...CACAG|GTA 1 1 90.697
213115359 GT-AG 0 1.000000099473604e-05 86 rna-XM_008667149.3 38490381 14 280870817 280870902 Zea mays 4577 CAG|GTCGGTAATT...GTTTTATTGATC/GTTTTATTGATC...TCAAG|GTC 2 1 91.33

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