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)

14 rows where transcript_id = 10378410

✎ 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
57022377 GT-AG 0 0.1094295701788892 117 rna-XM_025117200.1 10378410 1 12265463 12265579 Cynara cardunculus 4265 TTG|GTCTCTCTTT...ACACTTTTATTT/ATTTGTTTGAGT...TACAG|ATG 1 1 2.019
57022378 GT-AG 0 1.000000099473604e-05 209 rna-XM_025117200.1 10378410 2 12265831 12266039 Cynara cardunculus 4265 CAT|GTGAGTTATT...GGTGCTTTAGTA/ATTGTATTAATT...TATAG|CTC 0 1 7.777
57022379 GT-AG 0 1.000000099473604e-05 99 rna-XM_025117200.1 10378410 3 12266210 12266308 Cynara cardunculus 4265 CAT|GTAAGAACAT...CTTTCTTTACTT/TCTTTCTTTACT...TTAAG|GTT 2 1 11.677
57022380 GT-AG 0 4.792598835410248e-05 1299 rna-XM_025117200.1 10378410 4 12266427 12267725 Cynara cardunculus 4265 CTT|GTAAGTTAGC...TATTTCTTCTAT/ATCCAATTGATT...TTCAG|CCA 0 1 14.384
57022381 GT-AG 0 1.000000099473604e-05 90 rna-XM_025117200.1 10378410 5 12267804 12267893 Cynara cardunculus 4265 CAA|GTAAGTGCAG...CTTTTCTTGATT/CTTTTCTTGATT...TGTAG|ATG 0 1 16.173
57022382 GT-AG 0 0.00052051536863 659 rna-XM_025117200.1 10378410 6 12267948 12268606 Cynara cardunculus 4265 AAG|GTATTTGTTT...AGATATTTAATT/AGATATTTAATT...TGTAG|GCC 0 1 17.412
57022383 GT-AG 0 1.000000099473604e-05 102 rna-XM_025117200.1 10378410 7 12268792 12268893 Cynara cardunculus 4265 GCA|GTGAGTATTT...CATGCTTTACTT/ACATGCTTTACT...TGTAG|ATC 2 1 21.656
57022384 GT-AG 0 1.000000099473604e-05 451 rna-XM_025117200.1 10378410 8 12270641 12271091 Cynara cardunculus 4265 CAG|GTAAGAACTA...TTCTCTTTAAAT/AAAGTATTAATT...TTTAG|GAA 0 1 61.734
57022385 GT-AG 0 7.53095944543593e-05 568 rna-XM_025117200.1 10378410 9 12271287 12271854 Cynara cardunculus 4265 AAG|GTATGCGTCA...ATGCCTATGGTT/GTACATCTGATG...GTCAG|GAC 0 1 66.208
57022386 GT-AG 0 1.000000099473604e-05 260 rna-XM_025117200.1 10378410 10 12271941 12272200 Cynara cardunculus 4265 CAG|GTAAGATGCT...TGCACCCTGATT/ATTTGTGTCATT...TGTAG|TGG 2 1 68.181
57022387 GT-AG 0 0.0008424548036592 108 rna-XM_025117200.1 10378410 11 12272436 12272543 Cynara cardunculus 4265 CAT|GTACAGATTT...TGAACTTTAACT/TACTTCTTCATC...TGCAG|AGA 0 1 73.572
57022388 GT-AG 0 1.000000099473604e-05 387 rna-XM_025117200.1 10378410 12 12272681 12273067 Cynara cardunculus 4265 CAA|GTGAGTTGTA...TTTCCAATGATC/TTTCCAATGATC...TACAG|ATT 2 1 76.715
57022389 GT-AG 0 4.975840899407329e-05 114 rna-XM_025117200.1 10378410 13 12273153 12273266 Cynara cardunculus 4265 GAG|GTGCTCTGTC...TGGTGCTTGATG/ACATGGCTGATT...TGCAG|ACT 0 1 78.665
57022390 GT-AG 0 0.0002287596239535 191 rna-XM_025117200.1 10378410 14 12273747 12273937 Cynara cardunculus 4265 AAG|GTAAGCTCTA...ATGTCTTTATTC/AATGTCTTTATT...GTCAG|TCG 0 1 89.677

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