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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
186782660 GT-AG 0 1.000000099473604e-05 779 rna-XM_015201380.2 33342795 3 96303720 96304498 Solanum pennellii 28526 CAG|GTAATATCCC...TATTACTTATAA/TTATTACTTATA...TGCAG|ACG 2 1 8.896
186782661 GT-AG 0 0.0026722755245807 93 rna-XM_015201380.2 33342795 4 96303567 96303659 Solanum pennellii 28526 CAG|GTAACTTGGC...ATCGTTTTATCA/ATTTTGCTAATT...TTCAG|ACT 2 1 9.716
186782662 GT-AG 0 0.1652347341877668 1018 rna-XM_015201380.2 33342795 5 96302443 96303460 Solanum pennellii 28526 GAG|GTATTCCTTC...GATTTTTTGATT/GATTTTTTGATT...GCCAG|GAA 0 1 11.164
186782663 GT-AG 0 0.0004815164078701 771 rna-XM_015201380.2 33342795 6 96301603 96302373 Solanum pennellii 28526 GAG|GTAAACTTTT...GCGATTTTAAAA/AAATTACTGACT...TGCAG|GCA 0 1 12.107
186782664 GT-AG 0 1.000000099473604e-05 221 rna-XM_015201380.2 33342795 7 96301328 96301548 Solanum pennellii 28526 AAG|GTAATATGCT...ATCACATGAATT/ATGAAGCTAACC...TGCAG|GCA 0 1 12.845
186782665 GT-AG 0 1.000000099473604e-05 2169 rna-XM_015201380.2 33342795 8 96299051 96301219 Solanum pennellii 28526 GAG|GTTAGCCTTC...AAATTTTTGATA/AAATTTTTGATA...TCCAG|GGT 0 1 14.321
186782666 GT-AG 0 1.000000099473604e-05 88 rna-XM_015201380.2 33342795 9 96298813 96298900 Solanum pennellii 28526 CAG|GTAATGCTTT...TGTACTTTATTC/TTGTACTTTATT...TGCAG|GTT 0 1 16.371
186782667 GT-AG 0 0.0001453334144547 140 rna-XM_015201380.2 33342795 10 96298325 96298464 Solanum pennellii 28526 CAG|GTATTGTCTG...TATTGTTTATTT/TTATTGTTTATT...TTCAG|GAA 0 1 21.126
186782668 GT-AG 0 1.0042152019194912e-05 678 rna-XM_015201380.2 33342795 11 96295245 96295922 Solanum pennellii 28526 GAG|GTGAGCTCTC...CTATCCTTACCT/TCTATCCTTACC...TTCAG|GTA 2 1 53.949
186782669 GT-AG 0 1.000000099473604e-05 392 rna-XM_015201380.2 33342795 12 96292270 96292661 Solanum pennellii 28526 TAG|GTAAGAATAA...TGATATTTGACT/TGATATTTGACT...GCCAG|GGA 2 1 89.246
186782670 GT-AG 0 1.1079952761028058 1579 rna-XM_015201380.2 33342795 13 96290363 96291941 Solanum pennellii 28526 CAG|GTATGCTTTT...GTTTTCTTGATT/GTTTTCTTGATT...TGCAG|AAT 0 1 93.728
186797372 GT-AG 0 1.000000099473604e-05 2636 rna-XM_015201380.2 33342795 1 96305076 96307711 Solanum pennellii 28526 CAG|GTGATCTATT...TTGCTTTTGATT/TTGCTTTTGATT...TGCAG|CAA   0 5.767
186797373 GT-AG 0 1.000000099473604e-05 264 rna-XM_015201380.2 33342795 2 96304699 96304962 Solanum pennellii 28526 AAT|GTAATACTGG...TTATTGTTATTA/TTACTATTTATT...TACAG|TTG   0 7.311

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