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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
21286915 GT-AG 0 1.000000099473604e-05 102 rna-XM_006675881.1 4118546 1 520927 521028 Batrachochytrium dendrobatidis 109871 TAG|GTAATCCAGC...TTGATGTTATAT/ATAGAACTAACG...AATAG|AAC 1 1 27.255
21286916 GT-AG 0 1.000000099473604e-05 108 rna-XM_006675881.1 4118546 2 521085 521192 Batrachochytrium dendrobatidis 109871 CAG|GTACTCGAGA...TTGGTATTAAGT/TGTGAGCTAACT...AATAG|GGA 0 1 28.853
21286917 GT-AG 0 3.8926010079692905e-05 85 rna-XM_006675881.1 4118546 3 521223 521307 Batrachochytrium dendrobatidis 109871 TTG|GTAGGCTGGA...ATTCACGTAATC/TGTCTATTCACG...TTTAG|CTG 0 1 29.709
21286918 GT-AG 0 7.980610967263518e-05 103 rna-XM_006675881.1 4118546 4 521473 521575 Batrachochytrium dendrobatidis 109871 ACA|GTAAGTGTTG...TGATTTTTGAAT/AATCAATTCATT...CATAG|AAA 0 1 34.418
21286919 GT-AG 0 0.0023072021797667 77 rna-XM_006675881.1 4118546 5 521601 521677 Batrachochytrium dendrobatidis 109871 TGG|GTATGTATAT...TAGGTTTTAAAT/TAGGTTTTAAAT...TCTAG|ATG 1 1 35.131
21286920 GT-AG 0 1.1572388598773842e-05 85 rna-XM_006675881.1 4118546 6 521749 521833 Batrachochytrium dendrobatidis 109871 AAG|GTATAGCAGT...TCATCTTTTATT/TCATCTTTTATT...TATAG|AAG 0 1 37.158
21286921 GT-AG 0 3.478315335480844e-05 70 rna-XM_006675881.1 4118546 7 521939 522008 Batrachochytrium dendrobatidis 109871 AAG|GTATGATACT...GATTATTTATTC/AGATTATTTATT...AATAG|TTT 0 1 40.154
21286922 GT-AG 0 1.5914613606166688e-05 88 rna-XM_006675881.1 4118546 8 522311 522398 Batrachochytrium dendrobatidis 109871 AAA|GTAATGTATA...CATTCTTGGACA/TATAAACTAACC...ACCAG|CAA 2 1 48.773
21286923 GT-AG 0 3.9513022368172926e-05 108 rna-XM_006675881.1 4118546 9 522547 522654 Batrachochytrium dendrobatidis 109871 CAA|GTACGTCTAT...ATACCTGTAATA/CTAGTACTAACA...GATAG|GAC 0 1 52.997
21286924 GT-AG 0 1.000000099473604e-05 99 rna-XM_006675881.1 4118546 10 522817 522915 Batrachochytrium dendrobatidis 109871 GAG|GTGATCGTTT...CAAACTTGAATC/GATATCTTCAAC...CATAG|GAG 0 1 57.62
21286925 GT-AG 0 1.000000099473604e-05 71 rna-XM_006675881.1 4118546 11 523540 523610 Batrachochytrium dendrobatidis 109871 AAG|GTGTGCGCGT...TTGGGTTTAAAA/ATGCAACTAACC...CATAG|GAA 0 1 75.428
21286926 GT-AG 0 0.0511471627434331 73 rna-XM_006675881.1 4118546 12 523660 523732 Batrachochytrium dendrobatidis 109871 CAG|GTAACCATTT...ATATTTTTAAAC/TGTTGACTCATA...AACAG|CTG 1 1 76.826
21286927 GT-AG 0 1.000000099473604e-05 336 rna-XM_006675881.1 4118546 13 524202 524537 Batrachochytrium dendrobatidis 109871 AAG|GTGAGTTTAA...CTAATGTTGAAT/AAGTTACTAATG...ATCAG|ACA 2 1 90.211

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