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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
55032980 GC-AG 0 1.000000099473604e-05 86 rna-XM_017043407.1 10007521 1 3933718 3933803 Cucumis melo 3656 GAG|GCAATTTTCT...CTGTCTTTGTCT/CTTTGTCTCATA...GCCAG|GAA 1 1 21.207
55032981 GT-AG 0 1.0949310324913598e-05 102 rna-XM_017043407.1 10007521 2 3933918 3934019 Cucumis melo 3656 AAA|GTAAAGCTAA...TGTGTTTTAACT/TTTTGACTCATT...TGAAG|ATG 1 1 24.124
55032982 GT-AG 0 1.000000099473604e-05 71 rna-XM_017043407.1 10007521 3 3934136 3934206 Cucumis melo 3656 AAG|GTAATCTCAA...CCCAATTTGATG/ATGAAATTAATT...GAAAG|GGT 0 1 27.091
55032983 GT-AG 0 0.0527562595366745 125 rna-XM_017043407.1 10007521 4 3934418 3934542 Cucumis melo 3656 TTG|GTAACCCCTT...CTAATTTTGATT/CTAATTTTGATT...TGCAG|ATC 1 1 32.489
55032984 GT-AG 0 1.003010312156154e-05 89 rna-XM_017043407.1 10007521 5 3934781 3934869 Cucumis melo 3656 TTA|GTAAGTATTG...AAATTTGTATAT/GTATATGTCACT...TGCAG|TGG 2 1 38.578
55032985 GT-AG 0 1.000000099473604e-05 99 rna-XM_017043407.1 10007521 6 3935024 3935122 Cucumis melo 3656 CAT|GTAAGTACAA...TCATTCTAAGTG/TGAATGCTCATT...TGTAG|GCA 0 1 42.517
55032986 GT-AG 0 1.000000099473604e-05 4693 rna-XM_017043407.1 10007521 7 3935427 3940119 Cucumis melo 3656 CTC|GTTAGTTGTA...CTTGTTGTGATA/CATAGCCTCACA...AGGAG|CAA 1 1 50.294
55032987 GT-AG 0 0.0037303715853882 86 rna-XM_017043407.1 10007521 8 3940948 3941033 Cucumis melo 3656 ACG|GTAACTCTAC...TCTTCCTTGTTT/TGCCTTGTAACT...TTCAG|GAA 1 1 71.476
55032988 GT-AG 0 0.0003018204939214 128 rna-XM_017043407.1 10007521 9 3941166 3941293 Cucumis melo 3656 AAT|GTAAGCTAAT...TATGTTTTGAAA/ATTTATCTTATG...GATAG|ATC 1 1 74.853
55032989 GT-AG 0 1.000000099473604e-05 95 rna-XM_017043407.1 10007521 10 3941422 3941516 Cucumis melo 3656 AAG|GTAATTAATC...TTTTTCTCAATC/CTTTTTCTCAAT...AACAG|GGG 0 1 78.127
55032990 GT-AG 0 1.9747990223807894e-05 101 rna-XM_017043407.1 10007521 11 3941728 3941828 Cucumis melo 3656 TCG|GTAATATCAT...CTTTTTTTAATT/CTTTTTTTAATT...CGTAG|ATC 1 1 83.525
55032991 GT-AG 0 0.0001392985285952 107 rna-XM_017043407.1 10007521 12 3942067 3942173 Cucumis melo 3656 TTC|GTAAGTACTT...TAACTCTTGACA/ACATTATTTATT...TTAAG|GGG 2 1 89.614
55032992 GT-AG 0 0.0001211572921283 89 rna-XM_017043407.1 10007521 13 3942331 3942419 Cucumis melo 3656 TAT|GTAAGTATAA...GACCTCTTAATT/TATGAATTGAAT...TGTAG|GCC 0 1 93.63

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