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

✎ 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
168293811 GT-AG 0 0.000363637267225 11477 rna-XM_007419920.3 30057378 1 124816 136292 Python bivittatus 176946 CAG|GTACCGGCCG...TAATTTTTATTG/TTAATTTTTATT...CCCAG|TAT 0 1 2.147
168293812 GT-AG 0 1.000000099473604e-05 885 rna-XM_007419920.3 30057378 2 136434 137318 Python bivittatus 176946 GAG|GTGTGGTATA...TTGTTCTTCTAA/TTGAAGTTGAAT...AACAG|GCA 0 1 4.949
168293813 GT-AG 0 0.0001894487448385 888 rna-XM_007419920.3 30057378 3 137472 138359 Python bivittatus 176946 TCG|GTATGATGAT...TTTATGTTATTT/ACTGTATTTATG...ATCAG|TTT 0 1 7.99
168293814 GT-AG 0 0.0021339611418413 417 rna-XM_007419920.3 30057378 4 138462 138878 Python bivittatus 176946 AAG|GTATTATATT...TCTTCTTTGATT/ATTTTTTTTACT...CCCAG|GTG 0 1 10.018
168293815 GT-AG 0 1.000000099473604e-05 482 rna-XM_007419920.3 30057378 5 141766 142247 Python bivittatus 176946 TTG|GTGAGTGTCT...CATCCCTTTTCC/GTATAACTGATG...ATCAG|GAA 1 1 67.402
168293816 GT-AG 0 1.000000099473604e-05 534 rna-XM_007419920.3 30057378 6 142302 142835 Python bivittatus 176946 AAG|GTGAGGAGCT...AGTTATTTGACT/AGTTATTTGACT...TTCAG|CCA 1 1 68.475
168293817 GT-AG 0 1.000000099473604e-05 248 rna-XM_007419920.3 30057378 7 142891 143138 Python bivittatus 176946 TGG|GTAAGTATAG...AGTGCTCTAATG/ATATTGTTGAGT...TTCAG|CTC 2 1 69.569
168293818 GT-AG 0 1.000000099473604e-05 729 rna-XM_007419920.3 30057378 8 143207 143935 Python bivittatus 176946 CAG|GTAAAATCCC...TGTGTTTTAGTT/TTTTAGTTGATA...TGCAG|GTT 1 1 70.92
168293819 GT-AG 0 1.000000099473604e-05 1911 rna-XM_007419920.3 30057378 9 144810 146720 Python bivittatus 176946 AAG|GTGGGTAGTA...TAGGTATTGATC/ATTGATCTCATA...CCTAG|ATG 2 1 88.293
168293820 GT-AG 0 1.000000099473604e-05 1065 rna-XM_007419920.3 30057378 10 146865 147929 Python bivittatus 176946 AAG|GTGAGACAAT...GTAATTTTAAAT/GTAATTTTAAAT...TTAAG|CTA 2 1 91.155
168293821 GT-AG 0 3.205434260767606e-05 413 rna-XM_007419920.3 30057378 11 147997 148409 Python bivittatus 176946 ATA|GTAAGTATGC...TGGCCCTGAACT/TTGTGACTGAAC...CATAG|GAG 0 1 92.487
168293822 GT-AG 0 1.000000099473604e-05 187 rna-XM_007419920.3 30057378 12 148532 148718 Python bivittatus 176946 TGG|GTAAGGGGTA...GTTTTTTTAATA/GTTTTTTTAATA...TGTAG|GGA 2 1 94.912
168293823 GT-AG 0 1.000000099473604e-05 467 rna-XM_007419920.3 30057378 13 148871 149337 Python bivittatus 176946 TGG|GTGAGTCCGT...TAGTTGTTAATT/TTAATTCTGATT...TTCAG|ACT 1 1 97.933

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