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

✎ 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
163479940 GT-AG 0 9.690997016087568e-05 586 rna-XM_034365931.1 29350741 1 2971641 2972226 Prunus dulcis 3755 CAG|GTAATCCTCT...TTTCCCTTCATC/GTGTTATTCAGT...GATAG|GTA 2 1 1.493
163479941 GT-AG 0 1.6084142728974873e-05 378 rna-XM_034365931.1 29350741 2 2972407 2972784 Prunus dulcis 3755 AAG|GTCTGTAATG...TCTCCTTTAAAA/ACTGGACTAATA...GTTAG|GTT 2 1 6.049
163479942 GT-AG 0 1.000000099473604e-05 79 rna-XM_034365931.1 29350741 3 2972906 2972984 Prunus dulcis 3755 CCT|GTAAGTAAAA...TCAGTCTCAGTT/CATATTGTCATA...GACAG|GTA 0 1 9.112
163479943 GT-AG 0 1.000000099473604e-05 522 rna-XM_034365931.1 29350741 4 2973025 2973546 Prunus dulcis 3755 AAG|GTAATGTTGA...TGGATTTTAAAC/TGGATTTTAAAC...GACAG|GAA 1 1 10.124
163479944 GT-AG 0 1.000000099473604e-05 90 rna-XM_034365931.1 29350741 5 2973600 2973689 Prunus dulcis 3755 CAG|GTTTGAAATC...TGTTGCTTAATG/TTTCTTTTCATA...GGCAG|CCC 0 1 11.465
163479945 GT-AG 0 0.0006114685288239 479 rna-XM_034365931.1 29350741 6 2973746 2974224 Prunus dulcis 3755 AAA|GTATGTACCA...TAGCTCATATTA/GTTTAGCTCATA...GTTAG|AGT 2 1 12.883
163479946 GT-AG 0 1.000000099473604e-05 101 rna-XM_034365931.1 29350741 7 2974378 2974478 Prunus dulcis 3755 AAT|GTAAGTAGAA...TTTACTTTATCA/GATATTTTGATT...GACAG|GGA 2 1 16.755
163479947 GT-AG 0 1.000000099473604e-05 281 rna-XM_034365931.1 29350741 8 2974673 2974953 Prunus dulcis 3755 CAG|GTAGGAATTA...GTCTGCTTATCT/TTATGTTTAATT...TTCAG|AAG 1 1 21.665
163479948 GT-AG 0 1.000000099473604e-05 682 rna-XM_034365931.1 29350741 9 2976573 2977254 Prunus dulcis 3755 AAG|GTTATTTATC...ATATTCTTGAGC/AGTTTGTTCATT...TTCAG|GAA 0 1 62.642
163479949 GT-AG 0 0.0002412606738742 538 rna-XM_034365931.1 29350741 10 2978188 2978725 Prunus dulcis 3755 GAG|GTATGATAAC...TTTTTCTTGATG/AAGATTTTCATT...GATAG|GCC 0 1 86.257
163479950 GT-AG 0 0.0475480452021043 115 rna-XM_034365931.1 29350741 11 2979135 2979249 Prunus dulcis 3755 AAG|GTAACTTGCA...ATGTCCTTAATA/TTGGTGCTCATT...ATCAG|TCT 1 1 96.608
163479951 GT-AG 0 6.569069781284078e-05 106 rna-XM_034365931.1 29350741 12 2979313 2979418 Prunus dulcis 3755 AGT|GTAAGTGTTT...GATTACTTAATT/TTAATTCTAATT...TGCAG|CTT 1 1 98.203

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