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

✎ 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
103972554 GT-AG 0 1.000000099473604e-05 10941 rna-XM_017835208.1 19419632 1 4039742 4050682 Lepidothrix coronata 321398 ACG|GTAGGTGTGT...CGTACATTAAAA/CGTACATTAAAA...TGAAG|GTT 0 1 17.717
103972555 GT-AG 0 1.4809664156692606e-05 3970 rna-XM_017835208.1 19419632 2 4035618 4039587 Lepidothrix coronata 321398 AAT|GTAAGCAGGA...GAGCTCATGACT/TGTGAGCTCATG...TGCAG|GTG 1 1 27.822
103972556 GT-AG 0 1.000000099473604e-05 760 rna-XM_017835208.1 19419632 3 4034826 4035585 Lepidothrix coronata 321398 CAG|GTGGGCATTA...TATTTTTTAAAT/TTAAATCTTATT...TTTAG|GAA 0 1 29.921
103972557 GT-AG 0 1.000000099473604e-05 3506 rna-XM_017835208.1 19419632 4 4031241 4034746 Lepidothrix coronata 321398 AAG|GTGATTGGCG...TTTTTTTTTGTC/GTGAAACTAATA...TTCAG|GTG 1 1 35.105
103972558 GT-AG 0 2.3748506405826368e-05 1347 rna-XM_017835208.1 19419632 5 4029846 4031192 Lepidothrix coronata 321398 CAA|GTAAGTATTT...TTTTCTTTCTTT/AAATAAATAATT...GGCAG|AGC 1 1 38.255
103972559 GT-AG 0 9.16611823509566e-05 4123 rna-XM_017835208.1 19419632 6 4025640 4029762 Lepidothrix coronata 321398 GTG|GTACGTATAT...ATAGCCTGAACA/AATAGCCTGAAC...TTTAG|CTC 0 1 43.701
103972560 GT-AG 0 1.000000099473604e-05 1267 rna-XM_017835208.1 19419632 7 4024301 4025567 Lepidothrix coronata 321398 CTG|GTAAGTAAAA...CTTGCCTTGGCC/TTCATTCTGATG...GTCAG|CGT 0 1 48.425
103972561 GT-AG 0 0.0168882963899511 2378 rna-XM_017835208.1 19419632 8 4021884 4024261 Lepidothrix coronata 321398 AGT|GTATGTACTC...TGCTTCTTGAAA/TTGTTTTTCAAA...TGCAG|GTT 0 1 50.984
103972562 GT-AG 0 5.7027450231487605e-05 5432 rna-XM_017835208.1 19419632 9 4016356 4021787 Lepidothrix coronata 321398 GAG|GTATAAGACA...TGGCCTTTAATT/TTTCTTCTAATA...TTAAG|CGT 0 1 57.283
103972563 GT-AG 0 1.000000099473604e-05 1448 rna-XM_017835208.1 19419632 10 4014807 4016254 Lepidothrix coronata 321398 TAG|GTGAGTATTA...CTCTTCTTCATG/CTCTTCTTCATG...TTCAG|ATT 2 1 63.911
103972564 GT-AG 0 1.000000099473604e-05 4718 rna-XM_017835208.1 19419632 11 4009917 4014634 Lepidothrix coronata 321398 AAG|GTGGGTTAGC...TAATTCTTATGG/ATAATTCTTATG...TTTAG|GGT 0 1 75.197
103972565 GT-AG 0 6.770978467282311e-05 949 rna-XM_017835208.1 19419632 12 4008859 4009807 Lepidothrix coronata 321398 AAG|GTAATTATTT...GGTTTTTTAATT/GGTTTTTTAATT...CACAG|ATG 1 1 82.349
103972566 GT-AG 0 1.000000099473604e-05 9247 rna-XM_017835208.1 19419632 13 3999454 4008700 Lepidothrix coronata 321398 AGG|GTAAGGATTC...TTTTTTTCAATT/ATGTTTTTCACT...CACAG|GAG 0 1 92.717

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