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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92255817 GT-AG 0 2.700303356219312e-05 118 rna-XM_021436358.1 17265350 2 864529 864646 Herrania umbratica 108875 TCG|GTAATTTACT...ATATTCTAACCC/TATATTCTAACC...ACTAG|GTC 0 1 13.981
92255818 GT-AG 0 1.000000099473604e-05 509 rna-XM_021436358.1 17265350 3 863861 864369 Herrania umbratica 108875 AAG|GTTTGAATGA...TCTATCTTCACC/TCTATCTTCACC...TCCAG|GTT 0 1 18.691
92255819 GT-AG 0 0.0010375587416343 393 rna-XM_021436358.1 17265350 4 862593 862985 Herrania umbratica 108875 AAG|GTATATCATA...TTTTGTTTGACA/TTTTGTTTGACA...TGTAG|TTT 2 1 44.609
92255820 GT-AG 0 1.000000099473604e-05 279 rna-XM_021436358.1 17265350 5 862109 862387 Herrania umbratica 108875 GTG|GTTAGATTTT...CTTGCTTTAGAT/TGCTACCTAACC...TATAG|GTA 0 1 50.681
92255821 GT-AG 0 1.000000099473604e-05 532 rna-XM_021436358.1 17265350 6 861369 861900 Herrania umbratica 108875 TTG|GTAGGATAAT...CTGCTTTTATTG/CTTTTATTGATA...CGCAG|GCG 1 1 56.842
92255822 GT-AG 0 1.000000099473604e-05 238 rna-XM_021436358.1 17265350 7 860646 860883 Herrania umbratica 108875 GAG|GTATGGCTAA...TGTTTTTTCTCT/GATGTACTCAAC...TATAG|GTC 0 1 71.209
92255823 GT-AG 0 1.000000099473604e-05 268 rna-XM_021436358.1 17265350 8 859951 860218 Herrania umbratica 108875 ATG|GTTAGTATGT...ACTGACTTGACT/AATATACTGACT...TCTAG|GTT 1 1 83.857
92255824 GT-AG 0 0.0002186838542609 131 rna-XM_021436358.1 17265350 9 859739 859869 Herrania umbratica 108875 CAG|GTCTTTTCTT...TTTCTCATAATA/ACCTTTCTCATA...TGCAG|GTC 1 1 86.256
92255825 GT-AG 0 1.000000099473604e-05 70 rna-XM_021436358.1 17265350 10 859478 859547 Herrania umbratica 108875 GAG|GTTTGTGAGT...CCATTGTTGATT/CCATTGTTGATT...ATCAG|GAG 0 1 91.914
92255826 GT-AG 0 0.0022293925645286 691 rna-XM_021436358.1 17265350 11 858599 859289 Herrania umbratica 108875 TTG|GTAAACATTT...CTTCTCTTGATC/AATTAACTGATT...TGCAG|CCG 2 1 97.482
92263745 GT-AG 0 1.048140285623116e-05 698 rna-XM_021436358.1 17265350 1 864989 865686 Herrania umbratica 108875 GCC|GTGAGTTTTC...CTAGTCCTAACT/CTAGTCCTAACT...CACAG|GCT   0 5.45

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