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

✎ 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
197351825 GT-AG 0 2.3858313144067914e-05 30038 rna-XM_032233930.1 35062883 1 3353054 3383091 Thamnophis elegans 35005 CAG|GTAAATTATC...ATATCATTAACA/TTGTTGCTAATC...CCCAG|AAG 1 1 4.912
197351826 GT-AG 0 1.000000099473604e-05 2640 rna-XM_032233930.1 35062883 2 3350300 3352939 Thamnophis elegans 35005 TAG|GTAAAGAAAA...GTTCTCTTTCTA/CTATTGTTCAAT...ATTAG|CAG 1 1 7.049
197351827 GT-AG 0 1.000000099473604e-05 18973 rna-XM_032233930.1 35062883 3 3331249 3350221 Thamnophis elegans 35005 AAG|GTAAGAATTT...ATGTTCTAAAAC/AATGTTCTAAAA...TACAG|ATT 1 1 8.511
197351828 GT-AG 0 1.000000099473604e-05 51 rna-XM_032233930.1 35062883 4 3329440 3329490 Thamnophis elegans 35005 AAG|GTAGGGAAGA...ATGATGATGAAG/ATGATGATGAAG...AGAAG|CAG 1 1 41.47
197351829 GT-AG 0 1.000000099473604e-05 210 rna-XM_032233930.1 35062883 5 3327989 3328198 Thamnophis elegans 35005 AAA|GTAGATCAGG...AAGAGATTAAAA/AAGAGATTAAAA...AGCAG|GAA 0 1 64.736
197351830 GT-AG 0 6.058776836260379e-05 201 rna-XM_032233930.1 35062883 6 3327217 3327417 Thamnophis elegans 35005 AAG|GTGTGCCTTA...TTTGTTATAATT/TTATAATTTACT...TGCAG|ATG 1 1 75.441
197351831 GT-AG 0 0.0001050624809617 843 rna-XM_032233930.1 35062883 7 3326167 3327009 Thamnophis elegans 35005 AAG|GTTTATATAA...ATTTTTTTATTT/TTATTTCTGATT...TATAG|CTG 1 1 79.321
197351832 GT-AG 0 2.0131820056029634e-05 7326 rna-XM_032233930.1 35062883 8 3318706 3326031 Thamnophis elegans 35005 CAG|GTGACTGTGC...CTCTCCTTATTT/TCTCTCCTTATT...GATAG|CTG 1 1 81.852
197351833 GT-AG 0 1.000000099473604e-05 5678 rna-XM_032233930.1 35062883 9 3312966 3318643 Thamnophis elegans 35005 TCG|GTGGGTGAAT...TTATTTTTATTT/TTTATTTTTATT...ATTAG|GAT 0 1 83.015
197351834 GT-AG 0 0.0029038257586605 2039 rna-XM_032233930.1 35062883 10 3310776 3312814 Thamnophis elegans 35005 CAA|GTATGTCTCT...ATTCTGTTATCA/ATGAATATCATA...TACAG|GAT 1 1 85.846
197351835 GT-AG 0 1.000000099473604e-05 26853 rna-XM_032233930.1 35062883 11 3283579 3310431 Thamnophis elegans 35005 CAG|GTAAGGCTTT...GTGTCTATAGCT/TATAAACTTACA...AACAG|GTG 0 1 92.295
197351836 GT-AG 0 1.000000099473604e-05 4943 rna-XM_032233930.1 35062883 12 3278554 3283496 Thamnophis elegans 35005 CAG|GTAATGCTAA...GCTCTTTTAAAG/GCTCTTTTAAAG...TATAG|GAG 1 1 93.832
197351837 GT-AG 0 1.000000099473604e-05 2074 rna-XM_032233930.1 35062883 13 3276367 3278440 Thamnophis elegans 35005 AAG|GTAAGACATC...TACATTTTATTT/CTACATTTTATT...CACAG|ATC 0 1 95.951

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