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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
12239879 GT-AG 0 0.0004518397015895 2287 rna-XM_027990026.1 2279611 1 625182 627468 Aphis gossypii 80765 TCT|GTAAGCCATT...TGTGTTTTATAT/TTGTGTTTTATA...TTTAG|AGG 2 1 3.831
12239880 GC-AG 0 1.000000099473604e-05 63 rna-XM_027990026.1 2279611 2 627533 627595 Aphis gossypii 80765 ATG|GCAAGTCCTA...ATATTTTTATTT/TATATTTTTATT...TTTAG|CTT 0 1 6.897
12239881 GT-AG 0 0.000108227693055 71 rna-XM_027990026.1 2279611 3 627694 627764 Aphis gossypii 80765 TCA|GTAAATAAAA...GTATTTTTATTA/TGTATTTTTATT...AACAG|TTT 2 1 11.59
12239882 GT-AG 0 1.000000099473604e-05 1008 rna-XM_027990026.1 2279611 4 627894 628901 Aphis gossypii 80765 CAG|GTAATTTATT...TAGTTTCTAATT/TAGTTTCTAATT...TTCAG|CAA 2 1 17.768
12239883 GT-AG 0 0.0004239875062391 58 rna-XM_027990026.1 2279611 5 629170 629227 Aphis gossypii 80765 ACT|GTAAATTATT...ATATCTTTGTTA/TAGTTATTTATA...TTTAG|GAA 0 1 30.603
12239884 GT-AG 0 1.000000099473604e-05 59 rna-XM_027990026.1 2279611 6 629379 629437 Aphis gossypii 80765 TAG|GTAAAAAGGA...TTATTTTTAATT/TTATTTTTAATT...TTTAG|ATG 1 1 37.835
12239885 GT-AG 0 0.0120252135967457 501 rna-XM_027990026.1 2279611 7 629614 630114 Aphis gossypii 80765 AAA|GTATGTTGTT...ACTATTTTAAAA/TAAATTTTCAAT...TTTAG|AGC 0 1 46.264
12239886 GT-AG 0 1.000000099473604e-05 65 rna-XM_027990026.1 2279611 8 630245 630309 Aphis gossypii 80765 CCG|GTAAAATAAA...TTTATTTTATCA/ATTTTATTTATT...TTTAG|GTT 1 1 52.49
12239887 GT-AG 0 0.0001067695781332 78 rna-XM_027990026.1 2279611 9 630486 630563 Aphis gossypii 80765 ATT|GTAAGTATTT...ATTTTCTTTTTA/AAGAAATTAATT...CTTAG|GTA 0 1 60.92
12239888 GT-AG 0 0.7733929240318016 86 rna-XM_027990026.1 2279611 10 630714 630799 Aphis gossypii 80765 AAA|GTATACTTAA...TAAATTTTATTA/ATAAATTTTATT...TTTAG|GTA 0 1 68.103
12239889 GT-AG 0 1.000000099473604e-05 297 rna-XM_027990026.1 2279611 11 630909 631205 Aphis gossypii 80765 CAA|GTAAGATAAT...TATTTTTTACCA/TGAATATTAATT...TAAAG|GGT 1 1 73.324
12239890 GT-AG 0 1.000000099473604e-05 80 rna-XM_027990026.1 2279611 12 631535 631614 Aphis gossypii 80765 AAA|GTAAAAATTG...TAATACTTAATA/ATAATACTTAAT...TATAG|GAA 0 1 89.08
12239891 GT-AG 0 0.0094828047020176 61 rna-XM_027990026.1 2279611 13 631738 631798 Aphis gossypii 80765 TTG|GTATGTTTGA...TTTTACTTAAAA/ATTAATTTTACT...TATAG|GAA 0 1 94.971

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