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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
143078718 GT-AG 0 1.000000099473604e-05 682 rna-XM_025948985.1 25832594 1 19788779 19789460 Panicum hallii 206008 CAG|GTTCGCCCAC...TATTTCTTTGTT/ATGGTGCTTATT...GATAG|CTT 0 1 10.329
143078719 GT-AG 0 1.000000099473604e-05 192 rna-XM_025948985.1 25832594 2 19789623 19789814 Panicum hallii 206008 ACG|GTGCGAAATA...TTGTTTTTACAC/TTTGTTTTTACA...TACAG|GGC 0 1 15.265
143078720 GT-AG 0 0.0004685103279245 651 rna-XM_025948985.1 25832594 3 19789881 19790531 Panicum hallii 206008 CAG|GTGTGCTTAA...TATATTTTATTG/ATATATTTTATT...TGCAG|ATG 0 1 17.276
143078721 GT-AG 0 2.205971285992976e-05 98 rna-XM_025948985.1 25832594 4 19790676 19790773 Panicum hallii 206008 AGG|GTAACTGGTT...TATTTCCCAGTC/TGATAAGTTATC...GTTAG|GAT 0 1 21.664
143078722 GT-AG 0 0.051332938517864 140 rna-XM_025948985.1 25832594 5 19790888 19791027 Panicum hallii 206008 GAG|GTATTCTGTC...ATTCTCTTTGCA/ATGTTATTTACT...CTTAG|ATC 0 1 25.137
143078723 GT-AG 0 0.0006735700208263 101 rna-XM_025948985.1 25832594 6 19791130 19791230 Panicum hallii 206008 CCT|GTAAGTTCTG...TATTCTTTGTTT/ATTTGAATCACT...ACCAG|CTA 0 1 28.245
143078724 GT-AG 0 0.0030781067634797 3692 rna-XM_025948985.1 25832594 7 19791417 19795108 Panicum hallii 206008 CAG|GTATTTTGTC...TTGGGTTTAGCT/CTTGGGTTTAGC...TGCAG|AGC 0 1 33.912
143078725 GT-AG 0 7.826754683928586e-05 70 rna-XM_025948985.1 25832594 8 19795199 19795268 Panicum hallii 206008 GAA|GTAAGTTTAA...AAATTGTTAACT/AAATTGTTAACT...TTTAG|GAT 0 1 36.654
143078726 GT-AG 0 1.6280318268329866e-05 964 rna-XM_025948985.1 25832594 9 19795404 19796367 Panicum hallii 206008 CAG|GTACAATTGT...TATGGCTTACTG/ATATGGCTTACT...TTCAG|GAT 0 1 40.768
143078727 GT-AG 0 0.0012834070987619 791 rna-XM_025948985.1 25832594 10 19796491 19797281 Panicum hallii 206008 CAG|GTATTTGTTC...TTTATTTTATTT/CTTTATTTTATT...TGCAG|GTC 0 1 44.516
143078728 GT-AG 0 1.000000099473604e-05 647 rna-XM_025948985.1 25832594 11 19797368 19798014 Panicum hallii 206008 GTG|GTTCGTCTCA...AATCTGTTGATT/TGTTGATTTATT...TCCAG|TTT 2 1 47.136
143078729 GT-AG 0 1.000000099473604e-05 82 rna-XM_025948985.1 25832594 12 19798628 19798709 Panicum hallii 206008 AAG|GTTATCTCTA...ATGTCTTTGTCA/CAACATCTCATT...GACAG|GAA 0 1 65.814
143078730 GT-AG 0 0.000342946939356 98 rna-XM_025948985.1 25832594 13 19798788 19798885 Panicum hallii 206008 CAG|GTATTGATGA...TGTTTTTTAATG/TTGTTTTTTAAT...TTCAG|GTT 0 1 68.19

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