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)

11 rows where transcript_id = 29350739

✎ 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
163479905 GT-AG 0 0.0001049476345102 630 rna-XM_034345853.1 29350739 1 11954890 11955519 Prunus dulcis 3755 AAG|GTTTGTTCTT...ATGGTCTTATTG/CATGGTCTTATT...TACAG|GGT 2 1 6.908
163479906 GT-AG 0 5.191516198708622e-05 113 rna-XM_034345853.1 29350739 2 11955631 11955743 Prunus dulcis 3755 AAT|GTAAGTTCTG...AATTTCTGACCT/GAATTTCTGACC...TACAG|AAC 2 1 9.696
163479907 GT-AG 0 1.2433891297155389e-05 372 rna-XM_034345853.1 29350739 3 11956092 11956463 Prunus dulcis 3755 CTT|GTAAGTCCTT...CATTGTTTAACA/TTTGGTCTCACT...TTCAG|GGC 2 1 18.438
163479908 GT-AG 0 1.000000099473604e-05 115 rna-XM_034345853.1 29350739 4 11956784 11956898 Prunus dulcis 3755 CTG|GTAAACACAG...GTTCTTATGAAA/CAAGGTTTCATT...TGTAG|GTT 1 1 26.476
163479909 GT-AG 0 1.000000099473604e-05 947 rna-XM_034345853.1 29350739 5 11956991 11957937 Prunus dulcis 3755 AGG|GTTCGTATCT...TTTATATTAGTT/TTCTTGTTTATA...TGCAG|GAA 0 1 28.787
163479910 GT-AG 0 1.000000099473604e-05 493 rna-XM_034345853.1 29350739 6 11958299 11958791 Prunus dulcis 3755 TCT|GTGAGTAATA...GTATTCTAATCT/GGTATTCTAATC...TACAG|CTG 1 1 37.855
163479911 GT-AG 0 0.0048097712967915 686 rna-XM_034345853.1 29350739 7 11959003 11959688 Prunus dulcis 3755 AAG|GTATACTAGC...GTAAATTTACCC/ATTAAGCTCATG...GGAAG|CTT 2 1 43.155
163479912 GT-AG 0 1.000000099473604e-05 139 rna-XM_034345853.1 29350739 8 11959804 11959942 Prunus dulcis 3755 CAG|GTGAAGAAAC...TCTTTTTTAATT/TCTTTTTTAATT...TGCAG|GAA 0 1 46.044
163479913 GT-AG 0 0.0022753620019209 748 rna-XM_034345853.1 29350739 9 11960105 11960852 Prunus dulcis 3755 TTG|GTATGTATGT...TCAGCTTTAAAC/TTTAAACTAATG...TCCAG|GTC 0 1 50.113
163479914 GT-AG 0 1.000000099473604e-05 329 rna-XM_034345853.1 29350739 10 11961514 11961842 Prunus dulcis 3755 CAG|GTTAGCCTTG...TATACCTTGGTC/AGAGTTTTCACT...TTCAG|GGC 1 1 66.717
163479915 GT-AG 0 0.0023036852555685 344 rna-XM_034345853.1 29350739 11 11962050 11962393 Prunus dulcis 3755 CAG|GTTTTCTCTT...CGTATTTTGATT/AGTTTATTTATT...TGCAG|GTG 1 1 71.917

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