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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
55680644 GT-AG 0 0.0154270752043226 479 rna-XM_023677548.1 10143787 1 20241583 20242061 Cucurbita pepo 3663 CCG|GTACGCTTTG...TTGTCTTTGGTG/ATGGTATTCAAC...GACAG|TGA 1 1 1.883
55680645 GT-AG 0 7.438654905360856e-05 1433 rna-XM_023677548.1 10143787 2 20242169 20243601 Cucurbita pepo 3663 CAG|GTTTGTTTCT...TTTTTTGTATTA/TTTTGTATTATA...TGCAG|AAT 0 1 2.58
55680646 GT-AG 0 0.000250596658948 91 rna-XM_023677548.1 10143787 3 20243771 20243861 Cucurbita pepo 3663 CAG|GTAACTATGA...TTTTCCTCACTA/GTTTTCCTCACT...TTTAG|GAG 1 1 3.681
55680647 GT-AG 0 0.0062407766378123 172 rna-XM_023677548.1 10143787 4 20249963 20250134 Cucurbita pepo 3663 AAG|GTATTGTTCC...AATTTTTTAAAT/AATTTTTTAAAT...CTCAG|ATC 0 1 43.432
55680648 GT-AG 0 0.0008222516412934 84 rna-XM_023677548.1 10143787 5 20250753 20250836 Cucurbita pepo 3663 CAA|GTAATCATTT...ATTCTTTTGAAC/TTTGAACTTACT...ATTAG|GTG 0 1 47.459
55680649 GT-AG 0 1.000000099473604e-05 920 rna-XM_023677548.1 10143787 6 20251018 20251937 Cucurbita pepo 3663 ATG|GTAATTGTAC...GTCACCTTATTG/ATATTTTTTATG...TTTAG|GTT 1 1 48.638
55680650 GT-AG 0 0.0001226432353002 85 rna-XM_023677548.1 10143787 7 20252173 20252257 Cucurbita pepo 3663 CAG|GTTTTATTTG...ATTTACTTAATA/TATTTACTTAAT...TTCAG|CTT 2 1 50.169
55680651 GT-AG 0 0.0001414047751116 74 rna-XM_023677548.1 10143787 8 20256824 20256897 Cucurbita pepo 3663 AAG|GTATAACTTC...TTAAGCTTATTT/TTTAGTTTGATC...GCTAG|ATT 2 1 79.919
55680652 GT-AG 0 0.0001607693210723 262 rna-XM_023677548.1 10143787 9 20257121 20257382 Cucurbita pepo 3663 TTG|GTATGATAAA...TTTTGCTTGAAG/CTTAGTTTAAAA...TGCAG|TTT 0 1 81.372
55680653 GT-AG 0 0.0003295766312743 202 rna-XM_023677548.1 10143787 10 20257776 20257977 Cucurbita pepo 3663 CAG|GTTTGTTTCA...TCCCTTTTAATA/TCCCTTTTAATA...TGCAG|GGG 0 1 83.933
55680654 GT-AG 0 1.000000099473604e-05 1954 rna-XM_023677548.1 10143787 11 20258122 20260075 Cucurbita pepo 3663 CAG|GTGTGTGGAG...ACTTCTTTATTT/CCTGGTCTTACT...ACCAG|CGT 0 1 84.871
55680655 GT-AG 0 4.689112434427459e-05 414 rna-XM_023677548.1 10143787 12 20261102 20261515 Cucurbita pepo 3663 GAG|GTACTGTCTC...ATGCTTTTATAT/ATGTTTTTCATG...TGCAG|AAA 0 1 91.556
55680656 GT-AG 0 0.0051791861913431 123 rna-XM_023677548.1 10143787 13 20262017 20262139 Cucurbita pepo 3663 CTG|GTATGTTTAT...TTATCTGTATTT/TCTGTATTTATG...TGTAG|ATG 0 1 94.82

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