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)

12 rows where transcript_id = 32191412

✎ 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
179733487 GT-AG 0 0.0576098238395071 6954 rna-XM_047134755.1 32191412 1 209498538 209505491 Schistocerca americana 7009 AAG|GTATGCTTTT...CATTCTTTGTTA/AGTAATTTAACA...TTTAG|AGA 1 1 4.617
179733488 GT-AG 0 1.000000099473604e-05 4152 rna-XM_047134755.1 32191412 2 209505723 209509874 Schistocerca americana 7009 CAG|GTTAGAATAT...ATTTCTTTCACG/CTTTGTCTAATC...TTCAG|CTC 1 1 7.929
179733489 GT-AG 0 1.000000099473604e-05 7061 rna-XM_047134755.1 32191412 3 209514143 209521203 Schistocerca americana 7009 AAG|GTTGGTAACT...ACAATTTTCACA/TTCATACTAACT...TTCAG|GAA 0 1 69.128
179733490 GT-AG 0 0.0050342253644319 27163 rna-XM_047134755.1 32191412 4 209521473 209548635 Schistocerca americana 7009 TGT|GTAAGTTTCT...TTTTCTTTAGTG/GTTTGTTTCATT...TTCAG|CCT 2 1 72.985
179733491 GT-AG 0 1.000000099473604e-05 195 rna-XM_047134755.1 32191412 5 209548772 209548966 Schistocerca americana 7009 GTG|GTGAGAACAT...ATGCCTTTGTCT/AAGATTTTTACA...TGCAG|ACC 0 1 74.935
179733492 GT-AG 0 1.529830928384809e-05 23582 rna-XM_047134755.1 32191412 6 209549162 209572743 Schistocerca americana 7009 AAG|GTTTGTCCGC...GAACTTTTAATT/GAACTTTTAATT...TTCAG|TCT 0 1 77.732
179733493 GT-AG 0 1.000000099473604e-05 3726 rna-XM_047134755.1 32191412 7 209572864 209576589 Schistocerca americana 7009 GAA|GTAAGTAGAA...ACTTTGTTGACC/TTTGTACTTATA...TGTAG|ACA 0 1 79.452
179733494 GT-AG 0 1.000000099473604e-05 11472 rna-XM_047134755.1 32191412 8 209576729 209588200 Schistocerca americana 7009 CAG|GTAAATGAAG...AATATTTTACAC/AAATATTTTACA...TTCAG|GTC 1 1 81.445
179733495 GT-AG 0 0.00085280501849 34117 rna-XM_047134755.1 32191412 9 209588320 209622436 Schistocerca americana 7009 ACG|GTATGTCTAC...GAATGTTTAATG/GAATGTTTAATG...TGCAG|AGT 0 1 83.152
179733496 GT-AG 0 1.000000099473604e-05 3718 rna-XM_047134755.1 32191412 10 209622557 209626274 Schistocerca americana 7009 CAG|GTTTGTGATA...AAATTCTTGATC/AAATTCTTGATC...TCCAG|GAC 0 1 84.872
179733497 GT-AG 0 3.219185802847878e-05 3790 rna-XM_047134755.1 32191412 11 209626347 209630136 Schistocerca americana 7009 AGG|GTAAATTTTA...ATTTGCCTAACA/ATTTGCCTAACA...TCCAG|GTC 0 1 85.905
179750113 GT-AG 0 0.0015085986922672 1797 rna-XM_047134755.1 32191412 12 209630280 209632076 Schistocerca americana 7009 AAG|GTATTTATGT...TATTATTTAACT/ATTTAACTAATT...TACAG|GTG   0 87.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 309.495ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)