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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
92255258 GT-AG 0 4.117201481787983e-05 192 rna-XM_021419225.1 17265308 3 6298699 6298890 Herrania umbratica 108875 TCT|GTAAGTCATA...GCTCCATTATCC/CTGTTAGTAATC...TGTAG|ATT 0 1 50.445
92255259 GT-AG 0 0.0023577747417059 77 rna-XM_021419225.1 17265308 4 6299212 6299288 Herrania umbratica 108875 AAT|GTAACTACAT...TTTGTTTTATTG/ATTTGTTTTATT...TGCAG|GAG 0 1 57.09
92255260 GT-AG 0 1.000000099473604e-05 113 rna-XM_021419225.1 17265308 5 6299376 6299488 Herrania umbratica 108875 TTG|GTTAGTATAT...ATCTGTTTAATA/TTTGTTCTAATG...GACAG|TTA 0 1 58.89
92255261 GT-AG 0 2.354468378390826e-05 82 rna-XM_021419225.1 17265308 6 6300077 6300158 Herrania umbratica 108875 CGG|GTAAGCATCC...TATACCTTCTTT/AAGTGATTCACC...TATAG|GTA 0 1 71.062
92255262 GT-AG 0 6.0314612967120704e-05 81 rna-XM_021419225.1 17265308 7 6300324 6300404 Herrania umbratica 108875 CAG|GTAACACACT...CTAACCTTGAAA/ATTTGACTAACC...TACAG|AAA 0 1 74.477
92255263 GT-AG 0 1.000000099473604e-05 158 rna-XM_021419225.1 17265308 8 6300700 6300857 Herrania umbratica 108875 CTG|GTTAGTATAT...TTTTCCATATCA/CACCGACTAATA...TGCAG|GGT 1 1 80.584
92255264 GT-AG 0 0.000152829152441 82 rna-XM_021419225.1 17265308 9 6301073 6301154 Herrania umbratica 108875 CAG|GTATAATTTT...GTGTACTGAGAA/AGTGTACTGAGA...AACAG|ATC 0 1 85.034
92255265 GT-AG 0 1.000000099473604e-05 97 rna-XM_021419225.1 17265308 10 6301461 6301557 Herrania umbratica 108875 GAG|GTAAAGTTTG...TGATTTTTGTCC/ATTTAGCTGATT...GGAAG|GTT 0 1 91.368
92255266 GT-AG 0 4.4172262697261456e-05 83 rna-XM_021419225.1 17265308 11 6301622 6301704 Herrania umbratica 108875 TGG|GTAAGTTTCA...TTCTTCTTTTTA/CTTCTTTTTATG...TGCAG|TTG 1 1 92.693
92255267 GT-AG 0 1.000000099473604e-05 387 rna-XM_021419225.1 17265308 12 6301945 6302331 Herrania umbratica 108875 ATG|GTGAGTTTCT...TGTTTTTTATAT/TTGTTTTTTATA...TTCAG|GCA 1 1 97.661
92263724 GT-AG 0 1.000000099473604e-05 309 rna-XM_021419225.1 17265308 1 6295835 6296143 Herrania umbratica 108875 CTG|GTTAGTTTTA...TTCTCCTTTGTT/CTTTCTGGGATT...TGTAG|GTA   0 5.175
92263725 GT-AG 0 0.0101975404971224 341 rna-XM_021419225.1 17265308 2 6296273 6296613 Herrania umbratica 108875 TAG|GTATGTTACT...AATTTCTTAGTA/ACTCTACTAATT...TGCAG|GTT   0 7.845

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