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

✎ 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
151209802 GT-AG 0 1.000000099473604e-05 266 rna-XM_020721669.1 27151068 1 38543245 38543510 Phalaenopsis equestris 78828 GAG|GTAATTATTT...ACTAGCTTATTC/AACTAGCTTATT...TTCAG|ATT 0 1 0.961
151209803 GT-AG 0 1.000000099473604e-05 3336 rna-XM_020721669.1 27151068 2 38539825 38543160 Phalaenopsis equestris 78828 TCT|GTAAGTGCGT...AATATTTTACTT/CAATATTTTACT...TCCAG|GAT 0 1 3.03
151209804 GT-AG 0 1.000000099473604e-05 1266 rna-XM_020721669.1 27151068 3 38538082 38539347 Phalaenopsis equestris 78828 GAT|GTGAGTACCT...TCCGTTTTGATT/TCCGTTTTGATT...TACAG|GTA 0 1 14.782
151209805 GT-AG 0 1.899169683600588e-05 87 rna-XM_020721669.1 27151068 4 38537909 38537995 Phalaenopsis equestris 78828 CAC|GTGAGCTCAT...GCAACCTTATTT/TGCAACCTTATT...CATAG|ATA 2 1 16.901
151209806 GT-AG 0 0.0047984507142473 88 rna-XM_020721669.1 27151068 5 38537300 38537387 Phalaenopsis equestris 78828 GTG|GTAGGCTTGC...TCAATCTTAACT/TAGATTCTAACT...TGCAG|GGA 1 1 29.736
151209807 GT-AG 0 0.0007863058907331 89 rna-XM_020721669.1 27151068 6 38536767 38536855 Phalaenopsis equestris 78828 CAG|GTAACTTGGT...ATGTCCTTCTTC/GTCTATCTAATA...TTCAG|GTT 1 1 40.675
151209808 GT-AG 0 0.0148745523667468 352 rna-XM_020721669.1 27151068 7 38535652 38536003 Phalaenopsis equestris 78828 GCA|GTATGATATG...TTTTTCTGAACT/TTTTTTCTGAAC...TTCAG|AGG 2 1 59.473
151209809 GT-AG 0 1.000000099473604e-05 79 rna-XM_020721669.1 27151068 8 38535342 38535420 Phalaenopsis equestris 78828 GAG|GTTCGTTCAT...TTTTTGTTGAAC/CTGATGTTGATT...TTCAG|TTA 2 1 65.164
151209810 GT-AG 0 1.663901481452568e-05 84 rna-XM_020721669.1 27151068 9 38535133 38535216 Phalaenopsis equestris 78828 AGC|GTAAGTAATA...ATAATTTTAAAT/ATAATTTTAAAT...TTCAG|GTT 1 1 68.243
151209811 GT-AG 0 0.0003827843714659 4718 rna-XM_020721669.1 27151068 10 38529948 38534665 Phalaenopsis equestris 78828 CAG|GTAATTTTCA...GTTCTCTTAGCT/TAGCTATTTATG...TGCAG|GAA 0 1 79.749
151209812 GT-AG 0 1.000000099473604e-05 280 rna-XM_020721669.1 27151068 11 38529538 38529817 Phalaenopsis equestris 78828 AAG|GTGAAATTAT...CTTTTCATGATT/ATTTTGCTAATT...AACAG|GTG 1 1 82.951

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