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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
167375870 GT-AG 0 1.000000099473604e-05 1589 rna-XM_009333448.1 29894869 1 516716 518304 Pygoscelis adeliae 9238 AAG|GTCAGTGGAA...TTGATTTTAACT/TTGATTTTAACT...TGCAG|TGC 1 1 5.619
167375871 GT-AG 0 1.000000099473604e-05 1175 rna-XM_009333448.1 29894869 2 518379 519553 Pygoscelis adeliae 9238 GAG|GTGAGAGAAA...TTGTTTTTAATT/TTGTTTTTAATT...AGCAG|GTT 0 1 10.345
167375872 GT-AG 0 1.000000099473604e-05 5251 rna-XM_009333448.1 29894869 3 519656 524906 Pygoscelis adeliae 9238 AAG|GTAAACAAAG...TGTTTGTTAATG/ACTTGTTTCACT...CTTAG|GGA 0 1 16.858
167375873 GT-AG 0 1.000000099473604e-05 675 rna-XM_009333448.1 29894869 4 525036 525710 Pygoscelis adeliae 9238 GAG|GTAAGGAAGG...AATATATTCATT/AATATATTCATT...TTCAG|GCA 0 1 25.096
167375874 GT-AG 0 1.000000099473604e-05 1325 rna-XM_009333448.1 29894869 5 525834 527158 Pygoscelis adeliae 9238 GAG|GTAAGAGTAC...TTTCTTCTAACA/TTTCTTCTAACA...AACAG|ATG 0 1 32.95
167375875 GT-AG 0 0.0002413913208319 931 rna-XM_009333448.1 29894869 6 527233 528163 Pygoscelis adeliae 9238 ATG|GTAAATATTA...CTTTCCTTATTT/CTGTGTTTTATC...CCTAG|TTT 2 1 37.676
167375876 GT-AG 0 1.000000099473604e-05 390 rna-XM_009333448.1 29894869 7 528354 528743 Pygoscelis adeliae 9238 CAG|GTGAGAGTCC...TGCTTCTTGTAT/CACGTTTTCATA...TTCAG|CTG 0 1 49.808
167375877 GT-AG 0 1.000000099473604e-05 451 rna-XM_009333448.1 29894869 8 528830 529280 Pygoscelis adeliae 9238 CAA|GTAAGTGTGC...CCTGTCTTACTA/CCCTGTCTTACT...TCTAG|GGC 2 1 55.3
167375878 GT-AG 0 1.000000099473604e-05 1033 rna-XM_009333448.1 29894869 9 529398 530430 Pygoscelis adeliae 9238 CAA|GTCAGTTCAA...TTCTTCTTACCT/TTTCTTCTTACC...TCCAG|GTT 2 1 62.771
167375879 GT-AG 0 1.000000099473604e-05 310 rna-XM_009333448.1 29894869 10 530587 530896 Pygoscelis adeliae 9238 GAG|GTGAGCTCGC...TAGACCTGATGT/GTGATGCTGACT...GCCAG|AGA 2 1 72.733
167375880 GT-AG 0 1.311533241937184e-05 123 rna-XM_009333448.1 29894869 11 530967 531089 Pygoscelis adeliae 9238 GCG|GTAAGTCTTT...CACTGCTTGATT/CGGTGTCTGACA...GACAG|GTC 0 1 77.203
167375881 GT-AG 0 1.000000099473604e-05 681 rna-XM_009333448.1 29894869 12 531148 531828 Pygoscelis adeliae 9238 TGG|GTAAAGATTA...ACATCTGTGATT/TGTGATTTCATG...TGCAG|GTT 1 1 80.907
167375882 GT-AG 0 1.3185907872319525e-05 482 rna-XM_009333448.1 29894869 13 531972 532453 Pygoscelis adeliae 9238 AAG|GTACGTAGCT...CATTCCCTGATG/CTGATGCTCAGT...TCAAG|ACT 0 1 90.038
167375883 GT-AG 0 1.000000099473604e-05 681 rna-XM_009333448.1 29894869 14 532584 533264 Pygoscelis adeliae 9238 AAT|GTAAGTAGCA...TTGTTCTCATCC/ATTGTTCTCATC...AACAG|CTC 1 1 98.34

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