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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
61577836 GT-AG 0 1.000000099473604e-05 1130 rna-XM_047062767.1 11121929 2 6368324 6369453 Dermatophagoides farinae 6954 CAA|GTAAGTAATT...TTTTTTTCAATT/TTTTTTTTCAAT...TACAG|ATA 0 1 11.762
61577837 GT-AG 0 1.000000099473604e-05 124 rna-XM_047062767.1 11121929 3 6370094 6370217 Dermatophagoides farinae 6954 TAG|GTTTGTGATC...TTTTTTTCAACA/ATTTTTTTCAAC...CATAG|CCA 1 1 22.004
61577838 GT-AG 0 1.000000099473604e-05 519 rna-XM_047062767.1 11121929 4 6370394 6370912 Dermatophagoides farinae 6954 AAG|GTAATGATGA...TTCATTTTAACT/TTCATTTTAACT...TTTAG|CAC 0 1 24.82
61577839 GT-AG 0 5.033486905121897e-05 108 rna-XM_047062767.1 11121929 5 6371183 6371290 Dermatophagoides farinae 6954 AAG|GTAATTTTTC...TTGTCTTTTGTT/ATTTAATTAATT...TACAG|TTT 0 1 29.141
61577840 GC-AG 0 1.000000099473604e-05 62 rna-XM_047062767.1 11121929 6 6371590 6371651 Dermatophagoides farinae 6954 CAA|GCAAGTTTGT...ATACATTTATTA/AATTAATTAATC...TACAG|GAC 2 1 33.925
61577841 GT-AG 0 1.000000099473604e-05 83 rna-XM_047062767.1 11121929 7 6371737 6371819 Dermatophagoides farinae 6954 GAG|GTTAGTGGCT...CGTTTATTAACT/CGTTTATTAACT...ATTAG|TGC 0 1 35.286
61577842 GT-AG 0 1.000000099473604e-05 87 rna-XM_047062767.1 11121929 8 6371916 6372002 Dermatophagoides farinae 6954 GTG|GTAAGTCATA...TTTTTTTCAATC/TTTTTTTTCAAT...AATAG|TAT 0 1 36.822
61577843 GT-AG 0 1.000000099473604e-05 89 rna-XM_047062767.1 11121929 10 6372267 6372355 Dermatophagoides farinae 6954 TGA|GTAAGTAGTA...TTACCAATATTC/CCAATATTCAAT...TTCAG|ATA 2 1 41.031
61577844 GT-AG 0 1.000000099473604e-05 60 rna-XM_047062767.1 11121929 11 6372597 6372656 Dermatophagoides farinae 6954 ATG|GTAAATAGAA...TCTGTTTTAACA/ACATTTTTGATT...TATAG|GAT 0 1 44.887
61577845 GT-AG 0 0.0173379444333093 68 rna-XM_047062767.1 11121929 12 6372804 6372871 Dermatophagoides farinae 6954 GAG|GTATGTTTAG...TTTTCCGTAAAC/TAAACATTCATA...ATCAG|TTA 0 1 47.24
61577846 GT-AG 0 0.0247237244999189 90 rna-XM_047062767.1 11121929 13 6373247 6373336 Dermatophagoides farinae 6954 AAA|GTATTTATTA...TAGTCATTAATT/TTCTTTCTCAAC...TATAG|GAC 0 1 53.241
61577847 GC-AG 0 1.000000099473604e-05 43 rna-XM_047062767.1 11121929 14 6373905 6373947 Dermatophagoides farinae 6954 CTA|GCGAGCCAAT...ATAATAATAATC/ATAATAATAATC...AAGAG|GAA 1 1 62.33
61584108 GT-AG 0 1.000000099473604e-05 1580 rna-XM_047062767.1 11121929 1 6365944 6367523 Dermatophagoides farinae 6954 AAG|GTAAGAGGCG...TTTCTCTTGTTC/AATAATTTCATT...TACAG|TTA   0 0.672

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