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)

12 rows where transcript_id = 5963406

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
30552710 GT-AG 0 0.0001913179217634 636 rna-XM_042331820.1 5963406 2 123764951 123765586 Callorhinchus milii 7868 CAG|GTATGTATCA...ATTATTTTGTCA/TATTCTATCATT...ATTAG|AAG 2 1 65.853
30552711 GT-AG 0 2.968988723732365e-05 723 rna-XM_042331820.1 5963406 3 123765673 123766395 Callorhinchus milii 7868 TAG|GTAAACAGCA...ATGTTCATAATA/ATAATGTTCATA...GACAG|ATA 1 1 67.648
30552712 GT-AG 0 1.000000099473604e-05 1933 rna-XM_042331820.1 5963406 4 123766525 123768457 Callorhinchus milii 7868 CAG|GTAAGACAAA...GCATTTTTAATT/GCATTTTTAATT...AACAG|GAA 1 1 70.34
30552713 GT-AG 0 1.000000099473604e-05 95 rna-XM_042331820.1 5963406 5 123768617 123768711 Callorhinchus milii 7868 CAG|GTGAAATATG...ATTTACTTACCA/TTTGTATTTACT...TTTAG|AGC 1 1 73.659
30552714 GT-AG 0 0.0526437094593441 767 rna-XM_042331820.1 5963406 6 123768851 123769617 Callorhinchus milii 7868 AAA|GTAACTTAAG...ACTCCTTTAATA/ACTCCTTTAATA...TACAG|ATG 2 1 76.56
30552715 GT-AG 0 1.0828702041932424e-05 3241 rna-XM_042331820.1 5963406 7 123769747 123772987 Callorhinchus milii 7868 GAA|GTAAGTTAAA...TAAGGTTTGATT/TAAGGTTTGATT...TACAG|ATA 2 1 79.253
30552716 GT-AG 0 1.000000099473604e-05 1068 rna-XM_042331820.1 5963406 8 123773181 123774248 Callorhinchus milii 7868 CAG|GTGTGTACCC...TTCATTTTACCT/ATTTGGCTCACT...TGTAG|GTT 0 1 83.281
30552717 GT-AG 0 1.5004625206613837e-05 675 rna-XM_042331820.1 5963406 9 123774384 123775058 Callorhinchus milii 7868 ATG|GTATGTAAAG...GAATCATTTATT/TGCTATCTAATA...TGTAG|CAC 0 1 86.099
30552718 GT-AG 0 1.000000099473604e-05 1471 rna-XM_042331820.1 5963406 10 123775266 123776736 Callorhinchus milii 7868 GCT|GTAAGAGGAG...ATAATTTTAAAA/ATAATTTTAAAA...TTAAG|GTT 0 1 90.42
30552719 GT-AG 0 1.000000099473604e-05 1893 rna-XM_042331820.1 5963406 11 123776891 123778783 Callorhinchus milii 7868 AAG|GTAAGTATGA...TTATTGTTATTA/AATTAACTTATT...TACAG|GCT 1 1 93.634
30552720 GT-AG 0 1.000000099473604e-05 998 rna-XM_042331820.1 5963406 12 123778952 123779949 Callorhinchus milii 7868 TAG|GTAAGAAAGT...ATTACTTTATAT/TATGTAATTACT...TTCAG|GCA 1 1 97.14
30565452 GT-AG 0 1.0472616660395518e-05 2285 rna-XM_042331820.1 5963406 1 123759487 123761771 Callorhinchus milii 7868 GCT|GTAAGTGGGC...TATACATTAACA/TCAACACTGATT...AACAG|GAA   0 0.376

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