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

✎ 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
16699109 GT-AG 0 1.000000099473604e-05 452 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 1 104893 105344 Arenaria interpres 54971 CAG|GTAGGTAACT...ATCTTTTTACTT/CATCTTTTTACT...TTCAG|TGC 1 1 16.821
16699110 GT-AG 0 1.000000099473604e-05 1055 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 2 105503 106557 Arenaria interpres 54971 GAG|GTAAGCCAGT...GTTTCATTAAAA/GATGGTTTCATT...CAAAG|ATC 0 1 24.923
16699111 GT-AG 0 1.000000099473604e-05 1035 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 3 106663 107697 Arenaria interpres 54971 CAG|GTGTGTAAAT...GTGCACTTACCT/TGTGCACTTACC...TAAAG|CCT 0 1 30.308
16699112 GT-AG 0 1.000000099473604e-05 3903 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 4 107809 111711 Arenaria interpres 54971 CAG|GTAAGACAAC...CCTTTTTTATTA/ACCTTTTTTATT...TTTAG|ATT 0 1 36.0
16699113 GT-AG 0 1.7815696361359948e-05 1242 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 5 111910 113151 Arenaria interpres 54971 AAG|GTATGTGCAG...TAATCCATAAAC/AGTTAACTAATC...TTTAG|AGC 0 1 46.154
16699114 GT-AG 0 1.000000099473604e-05 851 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 6 113329 114179 Arenaria interpres 54971 TCT|GTGAGTATGT...GCTTTCTTAAAT/TAAATTCTAATT...AACAG|TTG 0 1 55.231
16699115 GT-AG 0 4.126280572313217e-05 266 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 7 114255 114520 Arenaria interpres 54971 GAG|GTATGTCAAA...GGTACTTTTTTT/TCTATTGCAACT...TTTAG|ATC 0 1 59.077
16699116 GT-AG 0 2.9565268548053944e-05 3476 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 8 114631 118106 Arenaria interpres 54971 AAG|GTAAATTAAT...TTATTCTTATTC/TTTATTCTTATT...AATAG|ATA 2 1 64.718
16699117 GT-AG 0 1.000000099473604e-05 2222 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 9 118270 120491 Arenaria interpres 54971 AAG|GTGAGTTTTC...GTCCCCTTAAAT/TAAATGCTGATT...TTTAG|GCC 0 1 73.077
16699118 GT-AG 0 1.000000099473604e-05 1114 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 10 120657 121770 Arenaria interpres 54971 AAG|GTAAAATGCC...TTTTTCTTGCTG/TTCTTGCTGATT...CCAAG|GAA 0 1 81.538
16699119 GT-AG 0 4.941095463949866e-05 1372 rna-gnl|WGS:VXAK|AREINT_R12774_mrna 3395365 11 121893 123264 Arenaria interpres 54971 AAA|GTAAGTATGG...TTTGTCTTACCT/ATTTGTCTTACC...TACAG|AGT 2 1 87.795

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