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

✎ 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
99589415 GT-AG 0 0.0700875393554614 405 rna-XM_041145475.1 18666360 1 37058618 37059022 Juglans microcarpa x juglans regia 2249226 CAG|GTTTCTTTTT...GTAACCTAATTT/AGTAACCTAATT...CTTAG|GTG 2 1 1.48
99589416 GT-AG 0 1.000000099473604e-05 242 rna-XM_041145475.1 18666360 2 37058196 37058437 Juglans microcarpa x juglans regia 2249226 AAG|GTGTTGTGTG...CACTTTTTACCC/GCATGTTTGACT...TATAG|GTT 2 1 5.994
99589417 GT-AG 0 1.000000099473604e-05 83 rna-XM_041145475.1 18666360 3 37057992 37058074 Juglans microcarpa x juglans regia 2249226 ACT|GTAAGTAAAT...AGTTTTTTTCCA/GTTAATTTCAGT...TGCAG|GTA 0 1 9.029
99589418 GT-AG 0 3.8127452887958936e-05 386 rna-XM_041145475.1 18666360 4 37057566 37057951 Juglans microcarpa x juglans regia 2249226 AAG|GTGCATTTTT...CGAACTTTAATG/TTTTTTGTCAAC...GACAG|GTA 1 1 10.033
99589419 GT-AG 0 1.000000099473604e-05 82 rna-XM_041145475.1 18666360 5 37057431 37057512 Juglans microcarpa x juglans regia 2249226 AAA|GTGAGTCCTC...AGCCTCTTAGTT/CTTAGTTTAAGT...GGCAG|CCT 0 1 11.362
99589420 GT-AG 0 60.85596931881116 658 rna-XM_041145475.1 18666360 6 37056717 37057374 Juglans microcarpa x juglans regia 2249226 AAA|GTATCTTTTC...ATGATCTTAATG/TTTTTTGTCACA...ATTAG|GGT 2 1 12.766
99589421 GT-AG 0 3.559035308592788e-05 92 rna-XM_041145475.1 18666360 7 37056472 37056563 Juglans microcarpa x juglans regia 2249226 AAT|GTAAGCAGCT...GATTTCATATTT/TATTTTTTCAGC...AACAG|GGA 2 1 16.604
99589422 GT-AG 0 0.1452594930978892 691 rna-XM_041145475.1 18666360 8 37055572 37056262 Juglans microcarpa x juglans regia 2249226 CAG|GTATATTCTC...TTCTCCTTATTT/TTTCTCCTTATT...CCCAG|ATG 1 1 21.846
99589423 GT-AG 0 0.0001176137551302 409 rna-XM_041145475.1 18666360 9 37053547 37053955 Juglans microcarpa x juglans regia 2249226 AAG|GTTTGTTTTT...TGTTTTTTCATT/TGTTTTTTCATT...CTCAG|GAA 0 1 62.378
99589424 GT-AG 0 0.0003670276694976 404 rna-XM_041145475.1 18666360 10 37052186 37052589 Juglans microcarpa x juglans regia 2249226 GAG|GTATGATTGG...GTATCTTTATGT/ATTGTATTTATA...TTAAG|AAA 0 1 86.381
99589425 GT-AG 0 1.843928627843762e-05 304 rna-XM_041145475.1 18666360 11 37051875 37052178 Juglans microcarpa x juglans regia 2249226 GTG|GTTAGCTACT...TCTTTTTTAACA/TCTTTTTTAACA...GTTAG|GTC 1 1 86.556
99589426 GT-AG 0 1.000000099473604e-05 1348 rna-XM_041145475.1 18666360 12 37050122 37051469 Juglans microcarpa x juglans regia 2249226 AAG|GTAGTGCCAG...CCATTTTTATTT/ACCATTTTTATT...ATTAG|TAC 1 1 96.714
99589427 GT-AG 0 1.000000099473604e-05 113 rna-XM_041145475.1 18666360 13 37049946 37050058 Juglans microcarpa x juglans regia 2249226 AGG|GTAAGTGCTG...GAGGATTTAATT/GAGGATTTAATT...TGCAG|GTT 1 1 98.294

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