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)

11 rows where transcript_id = 25832571

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
143078451 GT-AG 0 0.2834739467570597 101 rna-XM_025950347.1 25832571 2 58530431 58530531 Panicum hallii 206008 AAG|GTTTCTTTTG...ATGATTTTATTT/TTGTTGCTCAAT...GACAG|GGA 0 1 22.987
143078452 GT-AG 0 1.000000099473604e-05 80 rna-XM_025950347.1 25832571 3 58530270 58530349 Panicum hallii 206008 AAG|GTTCGATTAA...TGTTTTTTGTTG/TGTTGGCTTATG...TGCAG|GTT 0 1 24.877
143078453 GT-AG 0 0.033931520995661 97 rna-XM_025950347.1 25832571 4 58530095 58530191 Panicum hallii 206008 GAG|GTACCTTGTT...TTTGCATAAACT/CATAAACTAATC...ATTAG|GAA 0 1 26.698
143078454 GT-AG 0 1.000000099473604e-05 310 rna-XM_025950347.1 25832571 5 58529314 58529623 Panicum hallii 206008 GAG|GTACAGAACT...TATCTTCTAACT/TATCTTCTAACT...TATAG|GTA 0 1 37.69
143078455 GT-AG 0 2.2377829012603305e-05 102 rna-XM_025950347.1 25832571 6 58528987 58529088 Panicum hallii 206008 TGG|GTATGATGAT...AGTATTATGATG/TATGATGTCATG...GACAG|CAT 0 1 42.94
143078456 GT-AG 0 1.000000099473604e-05 475 rna-XM_025950347.1 25832571 7 58528350 58528824 Panicum hallii 206008 CTG|GTAAGTGTTT...GTGCATTTATAA/GGTGCATTTATA...TGCAG|GTT 0 1 46.721
143078457 GT-AG 0 1.000000099473604e-05 79 rna-XM_025950347.1 25832571 8 58527902 58527980 Panicum hallii 206008 AAG|GTAAATTGAC...ATTTTTTTCATT/ATTTTTTTCATT...CATAG|GCA 0 1 55.333
143078458 GT-AG 0 4.425647795100622e-05 231 rna-XM_025950347.1 25832571 9 58526329 58526559 Panicum hallii 206008 AAG|GTTCGTTTTT...TTTTCCTTGGCA/CTTGGCATGATT...TATAG|GGT 1 1 86.651
143078459 GT-AG 0 1.1765965420781624e-05 76 rna-XM_025950347.1 25832571 10 58526149 58526224 Panicum hallii 206008 ATG|GTAAGTTTCA...TGTTCTTCAGTA/CTGTTCTTCAGT...TACAG|GTG 0 1 89.078
143078460 GT-AG 0 1.000000099473604e-05 232 rna-XM_025950347.1 25832571 11 58525719 58525950 Panicum hallii 206008 CAG|GTGAGGAATC...GAAACATTATTT/TGGAGTCTGACT...TTCAG|GCA 0 1 93.699
143090348 GT-AG 0 6.15690332093933e-05 1549 rna-XM_025950347.1 25832571 1 58530898 58532446 Panicum hallii 206008 CTG|GTAAATTCTT...ATGCCCTGAATC/TATTTGTTGATG...TGCAG|TGT   0 14.866

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