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

✎ 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
143077339 GT-AG 0 4.591812970011639e-05 618 rna-XM_025963079.1 25832503 1 774926 775543 Panicum hallii 206008 CAG|GTAGGCCTTG...GACTTCTGAACG/AGACTTCTGAAC...TGCAG|GGA 0 1 2.091
143077340 GT-AG 0 1.000000099473604e-05 141 rna-XM_025963079.1 25832503 2 773537 773677 Panicum hallii 206008 AAG|GTACAATAAA...CTCCTTTTATTG/TCTAATATCATT...ATCAG|CGT 0 1 21.0
143077341 GT-AG 0 0.0004311983389052 187 rna-XM_025963079.1 25832503 3 772027 772213 Panicum hallii 206008 CAG|GTATTTGACA...GGTTCCTTATTG/AGGTTCCTTATT...TACAG|GGT 0 1 41.045
143077342 GT-AG 0 1.000000099473604e-05 223 rna-XM_025963079.1 25832503 4 771691 771913 Panicum hallii 206008 CAA|GTAAGAAATC...TCACTCTTAATA/TTTTTTCTTATA...TTTAG|GTA 2 1 42.758
143077343 GT-AG 0 1.000000099473604e-05 94 rna-XM_025963079.1 25832503 5 771509 771602 Panicum hallii 206008 CTG|GTAGGATGTC...TTTGTATTAATG/TTAAAATTCATT...TCTAG|GTG 0 1 44.091
143077344 GT-AG 0 1.000000099473604e-05 143 rna-XM_025963079.1 25832503 6 771279 771421 Panicum hallii 206008 CAG|GTGTGTAGCA...GCTAGTTTATTT/TGCTAGTTTATT...CACAG|GTT 0 1 45.409
143077345 GT-AG 0 0.0013298109394372 114 rna-XM_025963079.1 25832503 7 771072 771185 Panicum hallii 206008 AAG|GTATGTCTTC...TTTGCTGTGATA/TTTGCTGTGATA...TTCAG|AGT 0 1 46.818
143077346 GT-AG 0 0.0006754199475674 605 rna-XM_025963079.1 25832503 8 770383 770987 Panicum hallii 206008 CAA|GTAAGCTACC...TAATTTTTGACT/TAATTTTTGACT...CGCAG|GAG 0 1 48.091
143077347 GT-AG 0 1.000000099473604e-05 453 rna-XM_025963079.1 25832503 9 769726 770178 Panicum hallii 206008 CAG|GTAAACCAGA...AGTTATTTAATG/TTTGTAGTTATT...TGCAG|AAT 0 1 51.182
143077348 GT-AG 0 1.000000099473604e-05 83 rna-XM_025963079.1 25832503 10 769397 769479 Panicum hallii 206008 AAG|GTGCTATCCT...ACATTATTAATC/ACATTATTAATC...TGCAG|GAT 0 1 54.909
143077349 GT-AG 0 0.0957623956795566 97 rna-XM_025963079.1 25832503 11 767758 767854 Panicum hallii 206008 ACT|GTATGTGTTG...ATACTTTTAACT/ATACTTTTAACT...TGCAG|CCT 0 1 78.273
143077350 GT-AG 0 0.0005870438543121 444 rna-XM_025963079.1 25832503 12 766792 767235 Panicum hallii 206008 AAG|GTATGCACAC...TCGACCTGAATA/TTCGACCTGAAT...TGCAG|TGC 0 1 86.182
143077351 GT-AG 0 3.4834368833460964e-05 122 rna-XM_025963079.1 25832503 13 766421 766542 Panicum hallii 206008 GAG|GTAGTCCTAC...AGAATATTAATT/TATTAATTTACT...TGCAG|GTC 0 1 89.955

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