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

✎ 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
204419784 GT-AG 0 0.0004186965888263 84 rna-XM_038847859.1 36995261 1 7693063 7693146 Tripterygium wilfordii 458696 ATG|GTATTATACA...TGCTCTCTAACC/TGCTCTCTAACC...TGCAG|TCG 2 1 1.214
204419785 GT-AG 0 1.000000099473604e-05 756 rna-XM_038847859.1 36995261 2 7693502 7694257 Tripterygium wilfordii 458696 GCG|GTGAGGTTTT...GATTTCTTTATG/TCGTTTCTGATT...CATAG|GTT 0 1 14.676
204419786 GT-AG 0 0.0002691034101005 70 rna-XM_038847859.1 36995261 3 7694436 7694505 Tripterygium wilfordii 458696 GAG|GTGTGTTTTT...ACATCTTTATAT/TTATGTTTTATA...TGCAG|ATT 1 1 21.426
204419787 GT-AG 0 9.699479299645896e-05 2008 rna-XM_038847859.1 36995261 4 7694556 7696563 Tripterygium wilfordii 458696 GAG|GTACTACTTA...TTTTCCTTACAC/TGCTTTTTGATT...TTAAG|GTA 0 1 23.322
204419788 GT-AG 0 1.000000099473604e-05 84 rna-XM_038847859.1 36995261 5 7696657 7696740 Tripterygium wilfordii 458696 AAG|GTGAGGCATA...TATTTGTTAATC/TATTTGTTAATC...GGCAG|AAT 0 1 26.849
204419789 GT-AG 0 1.1283974173790843e-05 438 rna-XM_038847859.1 36995261 6 7696830 7697267 Tripterygium wilfordii 458696 GAG|GTAGTTATTA...TTTTGCTTATAA/ATGTGTTTCATT...TGCAG|GTG 2 1 30.224
204419790 GT-AG 0 0.0076576217202433 248 rna-XM_038847859.1 36995261 7 7697347 7697594 Tripterygium wilfordii 458696 AAG|GTATTATTTA...ATTGCTTTGACT/TTTGGTCTAACC...TATAG|GTT 0 1 33.22
204419791 GT-AG 0 0.000624381519871 299 rna-XM_038847859.1 36995261 8 7697678 7697976 Tripterygium wilfordii 458696 CAG|GTCCATTTCT...GATTTCTTAATT/GATTTCTTAATT...TGCAG|TGA 2 1 36.367
204419792 GT-AG 0 3.799782582456256e-05 170 rna-XM_038847859.1 36995261 9 7698056 7698225 Tripterygium wilfordii 458696 CAG|GTAATTTTAG...AATTTTTTAAAA/AATTTTTTAAAA...TCCAG|GTT 0 1 39.363
204419793 GT-AG 0 0.0003378502513374 248 rna-XM_038847859.1 36995261 10 7698962 7699209 Tripterygium wilfordii 458696 ATG|GTATGTCATT...TTTCTTTTGGTT/TTTTGGCTCATG...AGCAG|GCA 1 1 67.273
204419794 GT-AG 0 0.0013025782842816 138 rna-XM_038847859.1 36995261 11 7699291 7699428 Tripterygium wilfordii 458696 ATG|GTATTGTTGT...TGAGTTTTATCA/CTGAGTTTTATC...TGCAG|GAG 1 1 70.345
204419795 GT-AG 0 0.0006258107143925 447 rna-XM_038847859.1 36995261 12 7700072 7700518 Tripterygium wilfordii 458696 ATG|GTAAGCTTGT...CCCGCTTTAAAT/TTAAGATTGATT...TCCAG|GCA 2 1 94.729

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