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

✎ 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
103972189 GT-AG 0 1.000000099473604e-05 35902 rna-XM_017803644.1 19419599 1 15255879 15291780 Lepidothrix coronata 321398 AAA|GTGAGTATGT...GTGACTCTAACT/GTGACTCTAACT...TTTAG|ATC 1 1 4.03
103972190 GT-AG 0 1.000000099473604e-05 10421 rna-XM_017803644.1 19419599 2 15245327 15255747 Lepidothrix coronata 321398 GAG|GTACGAATAA...TTTTCCTTTTTC/GAAATTGTTATT...TTCAG|TTT 0 1 10.242
103972191 GT-AG 0 1.000000099473604e-05 7031 rna-XM_017803644.1 19419599 3 15238181 15245211 Lepidothrix coronata 321398 AAG|GTAGGTAAAG...TTGCTGTTAAAT/TTAAATTTTACA...TTCAG|TTC 1 1 15.695
103972192 GT-AG 0 1.000000099473604e-05 651 rna-XM_017803644.1 19419599 4 15237418 15238068 Lepidothrix coronata 321398 CAG|GTGAATGTTT...TTTGTCTTATCA/TTTTGTCTTATC...AACAG|GAT 2 1 21.005
103972193 GT-AG 0 1.000000099473604e-05 1141 rna-XM_017803644.1 19419599 5 15236161 15237301 Lepidothrix coronata 321398 CCC|GTTAGTAACT...TTGTCTGTATCA/GATGGTATTATT...CACAG|GTC 1 1 26.505
103972194 GT-AG 0 6.215491203585049e-05 920 rna-XM_017803644.1 19419599 6 15235063 15235982 Lepidothrix coronata 321398 AAG|GTATAAAACC...ATTTTCTTATAT/TATTTTCTTATA...TGAAG|GCT 2 1 34.945
103972195 GT-AG 0 0.0421745137217013 590 rna-XM_017803644.1 19419599 7 15234295 15234884 Lepidothrix coronata 321398 CAG|GTATCTGCAA...CATTTCTTATTG/TCATTTCTTATT...GCTAG|GTT 0 1 43.385
103972196 GT-AG 0 1.000000099473604e-05 729 rna-XM_017803644.1 19419599 8 15233398 15234126 Lepidothrix coronata 321398 GAG|GTAATAACTT...TTCATTTTATCT/ATGCATTTCATT...TTTAG|GCA 0 1 51.351
103972197 GT-AG 0 1.000000099473604e-05 254 rna-XM_017803644.1 19419599 9 15233043 15233296 Lepidothrix coronata 321398 AAA|GTAAGAGGAT...TTTGCTTTATCA/CTTTGCTTTATC...TTCAG|GAA 2 1 56.14
103972198 GT-AG 0 1.000000099473604e-05 3557 rna-XM_017803644.1 19419599 10 15229247 15232803 Lepidothrix coronata 321398 ATG|GTAAGTGGTG...TTTGCTTTTTCT/ATCAGTGTTACT...CTCAG|GGT 1 1 67.473
103972199 GT-AG 0 1.000000099473604e-05 801 rna-XM_017803644.1 19419599 11 15228241 15229041 Lepidothrix coronata 321398 ATG|GTACGGAGAT...TTTCTCTTCTCT/AATAGTTTCATT...CTCAG|GGA 2 1 77.193

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