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

✎ 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
132129730 GT-AG 0 2.984494176559227e-05 140 rna-XM_031618136.1 24215981 1 34192699 34192838 Nymphaea colorata 210225 CTG|GTACTAATCC...TTCTTCTCAATT/TTATCATTCATT...TGAAG|TAT 1 1 20.339
132129731 GT-AG 0 0.0060801616680318 1316 rna-XM_031618136.1 24215981 2 34191251 34192566 Nymphaea colorata 210225 CAG|GTAACCAACT...AACTTCTTACAT/TAACTTCTTACA...TGCAG|ATA 1 1 23.625
132129732 GT-AG 0 3.144833013788479e-05 89 rna-XM_031618136.1 24215981 3 34191040 34191128 Nymphaea colorata 210225 AAG|GTAGTTCTCC...CGTCTTTTAGCT/TGATGGCTCACT...GATAG|GGC 0 1 26.662
132129733 GT-AG 0 1.4019154104531549e-05 280 rna-XM_031618136.1 24215981 4 34190549 34190828 Nymphaea colorata 210225 TTG|GTAAGTTACC...ATCATCTTACTA/CATCATCTTACT...AACAG|GGC 1 1 31.914
132129734 GT-AG 0 2.479289184687476e-05 103 rna-XM_031618136.1 24215981 5 34190205 34190307 Nymphaea colorata 210225 ATA|GTAAGTTGTC...TTTATGTTACTA/ATGTTACTAATT...TACAG|TGG 2 1 37.914
132129735 GT-AG 0 1.000000099473604e-05 129 rna-XM_031618136.1 24215981 6 34189925 34190053 Nymphaea colorata 210225 TAT|GTAAGTACAC...GGATTCCTATCG/ATTGATTTCACA...TGCAG|GTG 0 1 41.673
132129736 GT-AG 0 0.0004575234358644 3059 rna-XM_031618136.1 24215981 7 34186634 34189692 Nymphaea colorata 210225 TGA|GTTGACTCAC...CCCTCCTTGAAA/AGTTGTTTCACA...TGCAG|GAT 1 1 47.448
132129737 GT-AG 0 1.000000099473604e-05 252 rna-XM_031618136.1 24215981 8 34185518 34185769 Nymphaea colorata 210225 AAG|GTTAGTGGTC...CTGTCCTTGCTA/TCCTTGCTAATT...TGCAG|GCA 1 1 68.957
132129738 GT-AG 0 0.0004502421639764 526 rna-XM_031618136.1 24215981 9 34184857 34185382 Nymphaea colorata 210225 GAG|GTAGGCTGCA...GTGTTTTTAATA/GTGTTTTTAATA...TGCAG|TTG 1 1 72.318
132129739 GT-AG 0 1.000000099473604e-05 978 rna-XM_031618136.1 24215981 10 34183733 34184710 Nymphaea colorata 210225 AAG|GTAAGCACCA...TACATCTTTTCT/ATTTGCATTACA...AACAG|GGA 0 1 75.952
132129740 GT-AG 0 1.000000099473604e-05 397 rna-XM_031618136.1 24215981 11 34183125 34183521 Nymphaea colorata 210225 TTG|GTGAGTGGGG...TTTCCTTTTGTT/CCTTTTGTTATG...GAAAG|GGA 1 1 81.205
132129741 GT-AG 0 3.507823158963165e-05 805 rna-XM_031618136.1 24215981 12 34182079 34182883 Nymphaea colorata 210225 CTT|GTAAGTTACA...AAATTCTTGCAA/TGGATGTTGAAA...TGCAG|TGG 2 1 87.204
132129742 GT-AG 0 1.000000099473604e-05 364 rna-XM_031618136.1 24215981 13 34181564 34181927 Nymphaea colorata 210225 TAT|GTAAGTGCGG...GCAACCTTACCC/CCATTATTAAAG...TGTAG|GCA 0 1 90.963

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