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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
81346761 GT-AG 0 0.0054587250630536 800 rna-XM_040174935.1 15063356 1 16217421 16218220 Gasterosteus aculeatus 69293 ATC|GTATGTTCAC...TGTGTCCTATAC/AATGAAATGACA...AACAG|GCG 2 1 2.458
81346762 GT-AG 0 1.000000099473604e-05 312 rna-XM_040174935.1 15063356 2 16218537 16218848 Gasterosteus aculeatus 69293 AAA|GTAAGACTGT...GCCGTTTTATTC/GTTTTATTCAAA...CTCAG|CGC 0 1 9.717
81346763 GT-AG 0 1.000000099473604e-05 117 rna-XM_040174935.1 15063356 3 16218957 16219073 Gasterosteus aculeatus 69293 CCG|GTAAGTCAAA...GGAACGTTAACC/AAAGTACTAACC...TCCAG|CCC 0 1 12.198
81346764 GT-AG 0 1.840559753644131e-05 206 rna-XM_040174935.1 15063356 4 16219333 16219538 Gasterosteus aculeatus 69293 ACG|GTAAATATTT...GTTTCCTTTCTC/GAATCGCTGACC...TGCAG|GGG 1 1 18.148
81346765 GT-AG 0 1.000000099473604e-05 803 rna-XM_040174935.1 15063356 5 16219706 16220508 Gasterosteus aculeatus 69293 GAG|GTGAGGCTTT...TAATTCTAAAAA/ATAATTCTAAAA...TCCAG|TTT 0 1 21.985
81346766 GT-AG 0 1.000000099473604e-05 109 rna-XM_040174935.1 15063356 6 16220606 16220714 Gasterosteus aculeatus 69293 GAG|GTGAGTAATG...CTCCCCTTCACG/GTCCCTCTCACT...TCCAG|GGC 1 1 24.213
81346767 GT-AG 0 1.000000099473604e-05 132 rna-XM_040174935.1 15063356 7 16220909 16221040 Gasterosteus aculeatus 69293 CAG|GTAATTCAAA...TTTGTGTTGATG/ATCTTTCTCACC...TTTAG|GAC 0 1 28.67
81346768 GT-AG 0 1.000000099473604e-05 455 rna-XM_040174935.1 15063356 8 16221158 16221612 Gasterosteus aculeatus 69293 TGG|GTAAGATCCC...GATCGTTTGATC/TCAGATTTGATC...TGCAG|GGG 0 1 31.358
81346769 AT-AC 1 99.9999998788238 305 rna-XM_040174935.1 15063356 9 16221725 16222029 Gasterosteus aculeatus 69293 ATG|ATATCCTTAA...TTCTCCTTGACT/TTCTCCTTGACT...TCCAC|GGG 1 1 33.931
81346770 GT-AG 0 1.000000099473604e-05 464 rna-XM_040174935.1 15063356 10 16222140 16222603 Gasterosteus aculeatus 69293 AAG|GTAGGGTCCT...GAGCTCTTTTCT/AATAAACTCACA...TCTAG|ATG 0 1 36.458
81346771 GT-AG 0 1.000000099473604e-05 95 rna-XM_040174935.1 15063356 11 16223140 16223234 Gasterosteus aculeatus 69293 CAG|GTAAGGAATC...GTGATCTTAACT/GTGATCTTAACT...ATCAG|AGG 2 1 48.771
81346772 GT-AG 0 1.000000099473604e-05 641 rna-XM_040174935.1 15063356 12 16223540 16224180 Gasterosteus aculeatus 69293 AAG|GTGAGTTAAT...TGGGTTTTACTG/TTGGGTTTTACT...CTCAG|GTG 1 1 55.778
81346773 GT-AG 0 1.000000099473604e-05 537 rna-XM_040174935.1 15063356 13 16224412 16224948 Gasterosteus aculeatus 69293 AAG|GTGGAGTACC...TAGACTTTGATA/TGATATTTCAAC...CATAG|GCG 1 1 61.084

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