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

✎ 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
163478490 GT-AG 0 1.000000099473604e-05 622 rna-XM_034342718.1 29350650 1 12794928 12795549 Prunus dulcis 3755 AGG|GTAATGTCTA...CTCATTTTATAT/TTTTTGCTCATT...TTCAG|ATA 0 1 6.853
163478491 GT-AG 0 0.0006923056510679 279 rna-XM_034342718.1 29350650 2 12794308 12794586 Prunus dulcis 3755 GGG|GTATGTCTCA...TGCTCCTGATTG/ATGCTCCTGATT...CATAG|GGT 2 1 10.767
163478492 GT-AG 0 0.0002508267412114 7524 rna-XM_034342718.1 29350650 3 12786111 12793634 Prunus dulcis 3755 AAG|GTATGTTCAT...AGGTTCTCAGCA/TAGGTTCTCAGC...TGTAG|GTA 0 1 18.492
163478493 GT-AG 0 0.0002767396776776 2679 rna-XM_034342718.1 29350650 4 12783327 12786005 Prunus dulcis 3755 GCT|GTAAGTTATT...CATTGTTTAACA/CATTGTTTAACA...TGCAG|GTC 0 1 19.697
163478494 GT-AG 0 1.000000099473604e-05 1084 rna-XM_034342718.1 29350650 5 12782062 12783145 Prunus dulcis 3755 TGA|GTGAGTAATG...CAATACTTATAC/ACAATACTTATA...GGCAG|CCT 1 1 21.775
163478495 GT-AG 0 1.000000099473604e-05 1678 rna-XM_034342718.1 29350650 6 12779970 12781647 Prunus dulcis 3755 ATG|GTAAGGTTCT...TGTTGCTTATTG/GTGTTGCTTATT...ATTAG|ACT 1 1 26.527
163478496 GT-AG 0 1.000000099473604e-05 2053 rna-XM_034342718.1 29350650 7 12776136 12778188 Prunus dulcis 3755 CTG|GTGAGGCTAC...TTTTCTTTATTG/TTTTTCTTTATT...TTCAG|GTG 0 1 46.97
163478497 GT-AG 0 1.8746335234523185e-05 178 rna-XM_034342718.1 29350650 8 12775745 12775922 Prunus dulcis 3755 CGG|GTAGGTTGTG...TACGTTTTATTG/GTTTTATTGATA...TGCAG|GTT 0 1 49.415
163478498 GT-AG 0 1.000000099473604e-05 686 rna-XM_034342718.1 29350650 9 12772791 12773476 Prunus dulcis 3755 AAG|GTTAGTTGGA...TTGTTTTTGGCA/GAAAATCTCAAA...AACAG|GTG 0 1 75.448
163478499 GT-AG 0 0.0059315955184316 986 rna-XM_034342718.1 29350650 10 12771695 12772680 Prunus dulcis 3755 AAG|GTATTTCTTT...CATATTTTAAAT/CATATTTTAAAT...CCCAG|CCT 2 1 76.71
163478500 GT-AG 0 1.8188086814015875e-05 77 rna-XM_034342718.1 29350650 11 12771215 12771291 Prunus dulcis 3755 GCC|GTAAGTAATT...TGTTTCTTCCTT/AGTGATCTAATT...CGCAG|GTT 0 1 81.336
163478501 GT-AG 0 0.2210227857831056 187 rna-XM_034342718.1 29350650 12 12770713 12770899 Prunus dulcis 3755 GAG|GTATTCTTTA...TAATTCTCATCT/GTAATTCTCATC...TGCAG|GCT 0 1 84.952
163478502 GT-AG 0 0.1431127382653763 1172 rna-XM_034342718.1 29350650 13 12769283 12770454 Prunus dulcis 3755 CAG|GTATTCTCTT...TTCGTCTTATTA/TTTCGTCTTATT...TACAG|GGT 0 1 87.913

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