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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
46739456 GT-AG 0 1.000000099473604e-05 896 Clevi.0001s1805.1.v2.1 8691795 1 4960586 4961481 Cleome violacea 389490 GAC|GTGAGCACTT...GAAATTTTGAAT/TTGTGTCTGACT...TACAG|CAA 0 1 3.636
46739457 GT-AG 0 0.0055617035139003 88 Clevi.0001s1805.1.v2.1 8691795 2 4961686 4961773 Cleome violacea 389490 AAA|GTATGTTGAT...TTTTCTTTGGTT/CTTTGGTTTAAA...TGCAG|GAG 0 1 10.909
46739458 GT-AG 0 4.2912545335608897e-05 490 Clevi.0001s1805.1.v2.1 8691795 3 4961956 4962445 Cleome violacea 389490 AAG|GTATAAACTA...AAGATTTTATTT/TACATTTTCATT...TTCAG|GGA 2 1 17.398
46739459 GT-AG 0 1.000000099473604e-05 81 Clevi.0001s1805.1.v2.1 8691795 4 4962573 4962653 Cleome violacea 389490 GAG|GTGATGCATG...TTTCCATTAACT/TTTTGTCTAACT...TGCAG|GTT 0 1 21.925
46739460 GT-AG 0 0.0015341721553943 161 Clevi.0001s1805.1.v2.1 8691795 5 4962846 4963006 Cleome violacea 389490 GAT|GTAAGCTTTC...TTTGCTCTGATG/TTTGCTCTGATG...TACAG|GAT 0 1 28.77
46739461 GC-AG 0 3.5531386678866046e-05 130 Clevi.0001s1805.1.v2.1 8691795 6 4963046 4963175 Cleome violacea 389490 GAG|GCATGTTTCT...TATTTTTTATTG/TTATTTTTTATT...AGCAG|GAT 0 1 30.16
46739462 GC-AG 0 1.000000099473604e-05 107 Clevi.0001s1805.1.v2.1 8691795 7 4964055 4964161 Cleome violacea 389490 AAA|GCAAGTTTGC...ACTCTTTTATTG/TACTCTTTTATT...TCCAG|CCT 0 1 61.497
46739463 GT-AG 0 0.0444242750678638 310 Clevi.0001s1805.1.v2.1 8691795 8 4964255 4964564 Cleome violacea 389490 AAA|GTATGCCATC...GATGCTTTACTT/AGATGCTTTACT...GACAG|GCA 0 1 64.813
46739464 GT-AG 0 1.000000099473604e-05 185 Clevi.0001s1805.1.v2.1 8691795 9 4964639 4964823 Cleome violacea 389490 CGC|GTAAGTAGTT...AGCTTCTAAATG/AAGCTTCTAAAT...TGTAG|GTT 2 1 67.451
46739465 GT-AG 0 1.000000099473604e-05 174 Clevi.0001s1805.1.v2.1 8691795 10 4964876 4965049 Cleome violacea 389490 CTG|GTAAGATCAA...ATCGCCTTGTTT/GCCTTGTTTATT...GTCAG|GTC 0 1 69.305
46739466 GT-AG 0 0.0033570767759687 81 Clevi.0001s1805.1.v2.1 8691795 11 4965140 4965220 Cleome violacea 389490 GTG|GTATATATAT...TTCTACTTGATT/TTTATGTTAATA...GACAG|GAC 0 1 72.513
46739467 GT-AG 0 1.338349968999042e-05 132 Clevi.0001s1805.1.v2.1 8691795 12 4965265 4965396 Cleome violacea 389490 AAC|GTAAGTACTG...AGTATTTTGATG/AGTATTTTGATG...TGCAG|GCC 2 1 74.082
46739468 GT-AG 0 1.000000099473604e-05 76 Clevi.0001s1805.1.v2.1 8691795 13 4965472 4965547 Cleome violacea 389490 AAA|GTGAGTGAAA...AACATTTTAGAG/AATAATTTCAAC...TTCAG|GGG 2 1 76.756

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