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

✎ 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
49484651 GT-AG 0 1.000000099473604e-05 541 rna-XM_012722453.1 9129084 1 20224615 20225155 Condylura cristata 143302 GAG|GTGAGTAGTG...CGTGTTTTGACT/TTTTGACTTATT...TATAG|ATA 0 1 0.659
49484652 GT-AG 0 6.421914180036e-05 7542 rna-XM_012722453.1 9129084 2 20225240 20232781 Condylura cristata 143302 AGT|GTAAGTAGCG...CTGTTTTTAACT/CTGTTTTTAACT...ATTAG|GAA 0 1 3.296
49484653 GT-AG 0 1.000000099473604e-05 19349 rna-XM_012722453.1 9129084 3 20232863 20252211 Condylura cristata 143302 GAT|GTAAGTACAT...AAGTTCTTTTTT/TCTTTTTTCAAT...TGTAG|GAT 0 1 5.838
49484654 GT-AG 0 0.001270977586483 1012 rna-XM_012722453.1 9129084 4 20252338 20253349 Condylura cristata 143302 AGG|GTATGTGGCT...TTTTTCTTAATA/TTTTTTCTTAAT...TCTAG|GAA 0 1 9.793
49484655 GT-AG 0 0.0401250337557938 10492 rna-XM_012722453.1 9129084 5 20253462 20263953 Condylura cristata 143302 CAG|GTATTCTTTA...GAATTTATATTC/TAAGAATTTATA...TGCAG|GAC 1 1 13.308
49484656 GT-AG 0 1.000000099473604e-05 1628 rna-XM_012722453.1 9129084 6 20264102 20265729 Condylura cristata 143302 AAG|GTAAGTGTGA...CAGCTCTTACAA/TTTTTTCTAATG...TCAAG|TAG 2 1 17.954
49484657 GT-AG 0 1.000000099473604e-05 4882 rna-XM_012722453.1 9129084 7 20265860 20270741 Condylura cristata 143302 AAG|GTAAGAATAT...TTTACCTTATAT/TTGATTTTTACT...TTTAG|GAA 0 1 22.034
49484658 GT-AG 0 0.0009268017518516 732 rna-XM_012722453.1 9129084 8 20270896 20271627 Condylura cristata 143302 GTG|GTATGTTAAT...TTTATTTTGTCT/TTATAGTTTATT...TTCAG|ATG 1 1 26.868
49484659 GT-AG 0 1.592885602905776e-05 2251 rna-XM_012722453.1 9129084 9 20271776 20274026 Condylura cristata 143302 CAG|GTTTGTACAG...TATTTTTTAAAT/TATTTTTTAAAT...TTCAG|AGT 2 1 31.513
49484660 GT-AG 0 0.003702667865628 2530 rna-XM_012722453.1 9129084 10 20275634 20278163 Condylura cristata 143302 TAG|GTATGGTTTT...ATGTTTTTAGCT/TTTTAGCTAATA...CTTAG|ATG 1 1 81.952
49484661 GT-AG 0 0.0002124776252726 1204 rna-XM_012722453.1 9129084 11 20278308 20279511 Condylura cristata 143302 AAG|GTATGGTTAA...TTTGTTTTATTT/TTTTGTTTTATT...AATAG|GAG 1 1 86.472
49484662 GT-AG 0 1.000000099473604e-05 976 rna-XM_012722453.1 9129084 12 20279643 20280618 Condylura cristata 143302 CAT|GTGAGTCATT...CAAATATTGATT/TTGATTTTCATC...CTTAG|GCT 0 1 90.584
49484663 GT-AG 0 4.28122285835278e-05 7326 rna-XM_012722453.1 9129084 13 20280806 20288131 Condylura cristata 143302 AAG|GTACGCAACT...ACACTTTTAAAG/CATTTACTGATT...TACAG|AAG 1 1 96.453
49484664 GT-AG 0 0.0164372978839238 2622 rna-XM_012722453.1 9129084 14 20288198 20290819 Condylura cristata 143302 AAG|GTAACCTAAT...CTGCCCTGAATA/AGCATGTTTATT...TGCAG|ATG 1 1 98.525

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