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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
214315932 GT-AG 0 1.000000099473604e-05 16366 rna-XM_035141285.1 38756833 1 11593932 11610297 Zootoca vivipara 8524 ATA|GTAAGATGTC...GCTTGTTTGATC/GCTTGTTTGATC...TCCAG|CTT 1 1 0.247
214315933 GT-AG 0 1.000000099473604e-05 1676 rna-XM_035141285.1 38756833 2 11592188 11593863 Zootoca vivipara 8524 TCT|GTGAGTAACA...CTATGCTAAATT/TCTATGCTAAAT...TACAG|GTC 0 1 0.637
214315934 GC-AG 0 1.000000099473604e-05 959 rna-XM_035141285.1 38756833 3 11591133 11592091 Zootoca vivipara 8524 AAG|GCAAGACGTG...TCCATTTTAGCT/TTTTAGCTAACT...TCCAG|CTT 0 1 1.189
214315935 GT-AG 0 1.000000099473604e-05 1339 rna-XM_035141285.1 38756833 4 11589731 11591069 Zootoca vivipara 8524 CAG|GTGAGCTTAA...TGAGTTTTGATA/TGAGTTTTGATA...ACTAG|GAA 0 1 1.55
214315936 GT-AG 0 2.9755713631932016e-05 457 rna-XM_035141285.1 38756833 5 11589132 11589588 Zootoca vivipara 8524 AAG|GTACAGTATG...AATATTTTGACA/AATATTTTGACA...CACAG|GTG 1 1 2.366
214315937 GT-AG 0 1.000000099473604e-05 3762 rna-XM_035141285.1 38756833 6 11585188 11588949 Zootoca vivipara 8524 CAG|GTAAATGCAT...AAGCATTTATTT/CAAGCATTTATT...CTCAG|GGG 0 1 3.411
214315938 AA-AG 0 0.0015034554408887 70 rna-XM_035141285.1 38756833 8 11583157 11583226 Zootoca vivipara 8524 AGG|AAATGATCCT...GGCATCGAGACT/TCGAGACTGATG...CTTAG|TGT 0 1 14.66
214315939 GA-AG 0 1.000000099473604e-05 316 rna-XM_035141285.1 38756833 9 11582627 11582942 Zootoca vivipara 8524 GAT|GAAAATACAC...GTGGCATTGAAG/ACGGCACTGACA...TTAAG|ATG 1 1 15.889
214315940 CT-AG 0 1.000000099473604e-05 273 rna-XM_035141285.1 38756833 16 11579568 11579840 Zootoca vivipara 8524 TTC|CTTGGAACTG...TGATCCTGCCCT/TCGAGACTGATG...CTGAG|CTG 1 1 31.823
214315941 GT-AG 0 1.000000099473604e-05 106 rna-XM_035141285.1 38756833 17 11579235 11579340 Zootoca vivipara 8524 GGG|GTGGCGGGAT...GGTCCCAAAGTT/CCAAAGTTGATG...CCAAG|GTT 0 1 33.127
214315942 GT-AG 0 1.000000099473604e-05 232 rna-XM_035141285.1 38756833 18 11578547 11578778 Zootoca vivipara 8524 GAT|GTGAAATGCC...CATGCCAAAGTT/CCAAAGTTCAAG...ACCAG|AGA 0 1 35.745
214315943 GT-AG 0 0.0026933611000178 128 rna-XM_035141285.1 38756833 19 11578164 11578291 Zootoca vivipara 8524 ACA|GTAAATTTAA...ATCACCTTACCT/AATCACCTTACC...GAAAG|GGG 0 1 37.209

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