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

✎ 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
171036009 GT-AG 0 1.1103690611984772e-05 23658 rna-XM_020515540.1 30628727 1 466991 490648 Rhincodon typus 259920 CGC|GTAAGTGCTG...TAATGTTTGACT/TAATGTTTGACT...TCAAG|ATG 1 1 1.128
171036010 GT-AG 0 2.261109934290715e-05 1766 rna-XM_020515540.1 30628727 2 464211 465976 Rhincodon typus 259920 AAG|GTACGTGCTG...TAAGTCTTATTT/TTAAGTCTTATT...TACAG|TTT 1 1 26.0
171036011 GT-AG 0 1.2253155626072218e-05 2332 rna-XM_020515540.1 30628727 3 461706 464037 Rhincodon typus 259920 AAG|GTACAATGAA...AAGCTTTTATCA/GCTTTTATCATG...AGCAG|GTT 0 1 30.243
171036012 GT-AG 0 0.0044479236065551 3980 rna-XM_020515540.1 30628727 4 457236 461215 Rhincodon typus 259920 CAG|GTATTTATTT...GCTCTTTTGAAT/GCTATACTCATG...AACAG|CTG 1 1 42.261
171036013 GT-AG 0 0.0006529883772295 24797 rna-XM_020515540.1 30628727 5 432199 456995 Rhincodon typus 259920 CAG|GTATTTGTCT...TTTTTCTTTCCC/GTTATACTAATA...CACAG|CTG 1 1 48.148
171036014 GT-AG 0 0.0014828368098216 19424 rna-XM_020515540.1 30628727 7 412539 431962 Rhincodon typus 259920 CAG|GTATTTGTGT...CATTTTTTAATG/CATTTTTTAATG...TGTAG|CAA 1 1 53.888
171036015 GT-AG 0 1.000000099473604e-05 9520 rna-XM_020515540.1 30628727 8 402961 412480 Rhincodon typus 259920 CAG|GTAAGTATCA...ATCATTTTAATT/ATCATTTTAATT...TGCAG|CTC 2 1 55.31
171036016 GT-AG 0 8.409932978334047e-05 2684 rna-XM_020515540.1 30628727 9 400182 402865 Rhincodon typus 259920 ATG|GTATGTGATA...ATGCCTATGACG/CTATTGTCCATT...TGCAG|AAG 1 1 57.64
171036017 GT-AG 0 1.000000099473604e-05 155 rna-XM_020515540.1 30628727 10 399889 400043 Rhincodon typus 259920 CAG|GTAAGGAGAT...AAATTGTTATTT/TAAATTGTTATT...TGTAG|AAG 1 1 61.025
171036018 GT-AG 0 1.927563872586108e-05 139 rna-XM_020515540.1 30628727 11 399578 399716 Rhincodon typus 259920 TAG|GTAATTCTGT...CTTTACTTAATT/CTTTACTTAATT...TTTAG|CTG 2 1 65.244
171036019 GT-AG 0 0.0068929699636374 2164 rna-XM_020515540.1 30628727 12 397247 399410 Rhincodon typus 259920 CAG|GTAACCCAGA...TGAGTCTTAACT/ATTGTATTTACC...TGCAG|GTG 1 1 69.34
171036020 GT-AG 0 1.000000099473604e-05 9520 rna-XM_020515540.1 30628727 13 387487 397006 Rhincodon typus 259920 AAG|GTGAGGGAGT...TCACTTTTAGAT/TAATGTTTCACT...CTTAG|GTT 1 1 75.227
171036021 GT-AG 0 1.000000099473604e-05 8248 rna-XM_020515540.1 30628727 14 379061 387308 Rhincodon typus 259920 CAA|GTAAGGAAAG...TCAATTTTAAAT/TTAAATTTCACC...CTCAG|GTG 2 1 79.593

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