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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
48130675 GT-AG 0 5.185497053941636e-05 693 rna-XM_027306371.1 8933526 1 45314906 45315598 Coffea eugenioides 49369 CTC|GTAAGTTCAT...GCTATTTTACCT/TTGTTTTTCAAT...TTCAG|GAT 0 1 2.302
48130676 GT-AG 0 1.000000099473604e-05 76 rna-XM_027306371.1 8933526 2 45314757 45314832 Coffea eugenioides 49369 TGG|GTAAGTTGCA...AGAGATTTAATT/AGAGATTTAATT...AACAG|GTG 1 1 3.493
48130677 GT-AG 0 0.0001085361339414 86 rna-XM_027306371.1 8933526 3 45314540 45314625 Coffea eugenioides 49369 GAG|GTAGTTTTTT...TGATCATTAAAT/AGGAGTTTAATT...TGTAG|GAT 0 1 5.632
48130678 GT-AG 0 1.000000099473604e-05 101 rna-XM_027306371.1 8933526 4 45314049 45314149 Coffea eugenioides 49369 CAG|GTTAAATTTA...TAATCCATATTC/TGTATATTTACT...TACAG|ATT 0 1 11.998
48130679 GT-AG 0 0.0002614296676157 360 rna-XM_027306371.1 8933526 5 45312343 45312702 Coffea eugenioides 49369 GCT|GTAAGTTCTG...AAACTTTTAGAT/CGGTGATTAACT...TGTAG|GCC 2 1 33.97
48130680 GT-AG 0 0.0001226220350622 85 rna-XM_027306371.1 8933526 6 45311791 45311875 Coffea eugenioides 49369 AAG|GTATAATCAA...TTTGTTTTAGAA/TTTAAATTTATC...CACAG|GTG 1 1 41.593
48130681 GT-AG 0 0.0008473498438533 78 rna-XM_027306371.1 8933526 7 45309884 45309961 Coffea eugenioides 49369 AAG|GTTTACTGTT...CATGTCCTAATG/TTGCTCCTCACT...TGCAG|AAC 0 1 71.45
48130682 GT-AG 0 0.0008221411643145 1028 rna-XM_027306371.1 8933526 8 45308698 45309725 Coffea eugenioides 49369 CGA|GTATGTTGAA...AAGCACTTATGC/AATTAGATCACT...AGTAG|GTT 2 1 74.029
48130683 GT-AG 0 0.0057048271329973 289 rna-XM_027306371.1 8933526 9 45308248 45308536 Coffea eugenioides 49369 CAG|GTACCATGAT...CCTGTCTTGACT/CCTGTCTTGACT...ATTAG|GTG 1 1 76.657
48130684 GT-AG 0 1.000000099473604e-05 802 rna-XM_027306371.1 8933526 10 45307285 45308086 Coffea eugenioides 49369 TAT|GTGAGTACAT...TATTCCTTTCTT/AATATTCTCAAT...TTTAG|GCA 0 1 79.285
48141011 GT-AG 0 0.0001001200952121 95 rna-XM_027306371.1 8933526 11 45306365 45306459 Coffea eugenioides 49369 CAG|GTATGATTAT...TTCTTTTTAAGT/TTCTTTTTAAGT...TGCAG|GGA   0 92.752
48141012 GT-AG 0 0.0023421932792311 86 rna-XM_027306371.1 8933526 12 45306145 45306230 Coffea eugenioides 49369 ATG|GTATACAAGG...GTTTTTCTATTT/TTAGATTTCACT...TGCAG|CTC   0 94.94
48141013 GT-AG 0 1.000000099473604e-05 491 rna-XM_027306371.1 8933526 13 45305558 45306048 Coffea eugenioides 49369 ACG|GTTGGTAACT...TTATCCTTGTTT/CTTGTTTTTACT...TGCAG|GAA   0 96.507

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