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

✎ 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
197351870 GT-AG 0 1.000000099473604e-05 16562 rna-XM_032224138.1 35062886 1 91503323 91519884 Thamnophis elegans 35005 CAG|GTAAGGAGGG...TCCTTTTTAATT/CATATTTTCATC...TGAAG|TTT 2 1 2.385
197351871 GT-AG 0 1.000000099473604e-05 503 rna-XM_032224138.1 35062886 2 91502710 91503212 Thamnophis elegans 35005 CTG|GTAATAATAA...TATACTTTTTCT/ATAAAGCTCATA...TATAG|GTC 1 1 4.484
197351872 GT-AG 0 1.5149752849203456e-05 1610 rna-XM_032224138.1 35062886 3 91500938 91502547 Thamnophis elegans 35005 CAG|GTGACATTTT...TTTTCATTAATG/TTCCTTTTCATT...TAAAG|CAG 1 1 7.575
197351873 GT-AG 0 1.6025187180697354e-05 723 rna-XM_032224138.1 35062886 4 91496717 91497439 Thamnophis elegans 35005 CAG|GTAAAGTTTA...TAATTCTTGAAG/TGAATTCTAATT...TTTAG|AAA 1 1 74.318
197351874 GT-AG 0 1.1153970059345873e-05 1974 rna-XM_032224138.1 35062886 5 91494471 91496444 Thamnophis elegans 35005 ATG|GTAAACCATC...AAGTACTTAAAA/GTGCTTTTCATT...TGTAG|GCT 0 1 79.508
197351875 GT-AG 0 1.000000099473604e-05 1252 rna-XM_032224138.1 35062886 6 91493102 91494353 Thamnophis elegans 35005 AGT|GTAAGTACAA...GTCTCTTTTTCC/AAACTACTTACA...TTTAG|TAT 0 1 81.74
197351876 GT-AG 0 0.0245055966590696 1180 rna-XM_032224138.1 35062886 7 91491788 91492967 Thamnophis elegans 35005 AAG|GTATTTTATT...GTTTCTTTGAAT/CTTTGAATTATT...TATAG|AAT 2 1 84.297
197351877 GT-AG 0 1.000000099473604e-05 1039 rna-XM_032224138.1 35062886 8 91490552 91491590 Thamnophis elegans 35005 AAG|GTAAAAGATC...ATATATTTGATA/AATATATTTATA...TCTAG|ACA 1 1 88.056
197351878 GT-AG 0 5.0220980571292895e-05 2228 rna-XM_032224138.1 35062886 9 91488186 91490413 Thamnophis elegans 35005 ATG|GTACAGTTTG...TAACACATAACA/CAAGACATAACA...TTTAG|ATG 1 1 90.689
197351879 GT-AG 0 1.000000099473604e-05 2777 rna-XM_032224138.1 35062886 10 91485311 91488087 Thamnophis elegans 35005 AAG|GTACTGATAA...ATTCTGTTAATT/TAATTGCTAATC...TTCAG|GCT 0 1 92.559
197351880 GT-AG 0 0.0031684978809969 2927 rna-XM_032224138.1 35062886 11 91482231 91485157 Thamnophis elegans 35005 CAG|GTATGTTTGT...AAAAACTTAACT/TATTTAGTTACT...TGCAG|GAA 0 1 95.478
197351881 GT-AG 0 1.000000099473604e-05 1006 rna-XM_032224138.1 35062886 12 91481129 91482134 Thamnophis elegans 35005 GAG|GTGAGTCTTT...TGACATTTAATT/TGACATTTAATT...AATAG|ATT 0 1 97.31

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