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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
151208779 GT-AG 0 1.000000099473604e-05 11836 rna-XM_020728858.1 27150980 1 500711 512546 Phalaenopsis equestris 78828 CCA|GTGAGTTCTT...TAGCTCTTGAAC/ATTTATATGATA...TACAG|TTA 0 1 15.466
151208780 GT-AG 0 1.000000099473604e-05 194 rna-XM_020728858.1 27150980 2 512740 512933 Phalaenopsis equestris 78828 CTG|GTAAGAAGTA...ACGTTATTAACT/ACGTTATTAACT...TGCAG|GTT 1 1 29.096
151208781 GT-AG 0 2.301697685984478e-05 271 rna-XM_020728858.1 27150980 3 512991 513261 Phalaenopsis equestris 78828 TAG|GTACTTAATA...AGGGGCTTAGTT/TTCTGGCTTATG...TTCAG|GCC 1 1 33.121
151208782 GT-AG 0 1.000000099473604e-05 98 rna-XM_020728858.1 27150980 4 513348 513445 Phalaenopsis equestris 78828 GAG|GTTCGACAGA...GCAGTTTTAAAA/GCAGTTTTAAAA...TGTAG|GTG 0 1 39.195
151208783 GT-AG 0 0.003837420929236 84 rna-XM_020728858.1 27150980 5 513535 513618 Phalaenopsis equestris 78828 GAA|GTATAATTAT...AACATTTTATCT/TATTTGCTCATC...TTCAG|GGG 2 1 45.48
151208784 GT-AG 0 0.0004212308943276 161 rna-XM_020728858.1 27150980 6 513674 513834 Phalaenopsis equestris 78828 CAA|GTATGTAGAC...TTTTCTATATTT/CTTGTATTTATT...CTCAG|TCT 0 1 49.364
151208785 GT-AG 0 6.169453170913575e-05 76 rna-XM_020728858.1 27150980 7 513888 513963 Phalaenopsis equestris 78828 TAG|GTAGGTTTAT...GCTTTTTTATCA/TTAGTTTTTATT...TACAG|TGA 2 1 53.107
151208786 GT-AG 0 1.000000099473604e-05 127 rna-XM_020728858.1 27150980 8 514015 514141 Phalaenopsis equestris 78828 AAA|GTGAGTACTC...CTTCTTTTAATT/CTTCTTTTAATT...TTCAG|GTG 2 1 56.709
151208787 GT-AG 0 0.0009593830408566 388 rna-XM_020728858.1 27150980 9 514191 514578 Phalaenopsis equestris 78828 CAC|GTTTGTATTG...TGTTCCTTGTTG/AAGTCAATGATT...ATCAG|AAT 0 1 60.169
151208788 GT-AG 0 0.0001523275115135 80 rna-XM_020728858.1 27150980 10 514645 514724 Phalaenopsis equestris 78828 GAG|GTCTGTAACT...TGCTCCTTAACT/ACCAACTTCACC...TTCAG|GCT 0 1 64.831
151208789 GT-AG 0 1.000000099473604e-05 124 rna-XM_020728858.1 27150980 11 514802 514925 Phalaenopsis equestris 78828 CAG|GTAATATGTA...TATTCCTTCATA/TATTCCTTCATA...TTCAG|CCA 2 1 70.268
151208790 GT-AG 0 1.000000099473604e-05 7915 rna-XM_020728858.1 27150980 12 515164 523078 Phalaenopsis equestris 78828 GAT|GTAAGTCCAG...CAAATTTTGATG/TTCATACTAATT...CGCAG|ACG 0 1 87.076
151208791 GT-AG 1 96.84827877214562 474 rna-XM_020728858.1 27150980 13 523146 523619 Phalaenopsis equestris 78828 CAT|GTATCCTTAT...AATTTCTTAATT/AATTTCTTAATT...TGAAG|CTG 1 1 91.808

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