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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
150885829 GT-AG 0 0.0005287000116769 699 rna-XM_010281747.1 27105540 1 41086 41784 Phaethon lepturus 97097 GTG|GTATGTAATC...ATGTCCTTTTTT/TTTTTTTCTACC...TGCAG|GTC 0 1 10.411
150885830 GT-AG 0 0.0071923316058562 3491 rna-XM_010281747.1 27105540 2 37112 40602 Phaethon lepturus 97097 GAG|GTATATATCT...TTTTTTTTACTT/TTTTTTTTTACT...TGCAG|AAG 0 1 24.497
150885831 GT-AG 0 1.000000099473604e-05 1458 rna-XM_010281747.1 27105540 3 35536 36993 Phaethon lepturus 97097 AAG|GTGTTTGGAA...TTTTTCTCAATA/TTTTTTCTCAAT...GAAAG|GCT 1 1 27.938
150885832 GT-AG 0 1.000000099473604e-05 2725 rna-XM_010281747.1 27105540 4 32656 35380 Phaethon lepturus 97097 CTG|GTAAGTAAAA...ATATCTTTGAAT/AATTTGTTCACC...CATAG|GCT 0 1 32.458
150885833 GT-AG 0 0.0060721356987675 2548 rna-XM_010281747.1 27105540 5 29934 32481 Phaethon lepturus 97097 GAT|GTATGTAGTA...TAATTTTTACTT/ATAATTTTTACT...TATAG|GTC 0 1 37.533
150885834 GT-AG 0 1.000000099473604e-05 14333 rna-XM_010281747.1 27105540 6 15478 29810 Phaethon lepturus 97097 AGG|GTAAGACAAC...ATATTCTTACAC/AATATTCTTACA...ACTAG|GTG 0 1 41.12
150885835 GT-AG 0 1.000000099473604e-05 6597 rna-XM_010281747.1 27105540 7 8599 15195 Phaethon lepturus 97097 GTA|GTAAGTGATC...TTGTCTTTGAGC/TCTATGCTTAAA...TACAG|GCT 0 1 49.344
150885836 GT-AG 0 1.000000099473604e-05 329 rna-XM_010281747.1 27105540 8 8216 8544 Phaethon lepturus 97097 GAT|GTAAGTACTG...TTCACTTTTTTT/TGATATTTCACT...CTTAG|GTG 0 1 50.919
150885837 AT-AC 0 0.0004932084294833 1693 rna-XM_010281747.1 27105540 9 6385 8077 Phaethon lepturus 97097 AAG|ATAAGTATAA...GTGATTATAACC/CCAATTTTTATT...TTTAC|TTT 0 1 54.943
150885838 GT-AG 0 0.0002415747891259 376 rna-XM_010281747.1 27105540 10 5904 6279 Phaethon lepturus 97097 GGG|GTAAATTTAT...TTTTTCTTCTCT/ACAGTTTGTATT...CTCAG|AAC 0 1 58.005
150885839 GT-AG 0 1.000000099473604e-05 346 rna-XM_010281747.1 27105540 11 5287 5632 Phaethon lepturus 97097 TAG|GTAAGTCTTG...TTGGTTTTATTT/CTTGGTTTTATT...TTTAG|GTA 1 1 65.908

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