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

✎ 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
213115438 GT-AG 0 1.000000099473604e-05 377 rna-XM_008667397.3 38490385 1 296606674 296607050 Zea mays 4577 AAG|GTCAGTACTC...TTACTTTTGATG/TACTTGTTCATT...TTTAG|GTG 0 1 6.332
213115439 GT-AG 0 1.000000099473604e-05 142 rna-XM_008667397.3 38490385 2 296606197 296606338 Zea mays 4577 GGG|GTAGGTACTT...CATTTTTTACTA/TTTTTACTAATT...TGTAG|GTT 2 1 10.282
213115440 GT-AG 0 0.0001803472391172 166 rna-XM_008667397.3 38490385 3 296605400 296605565 Zea mays 4577 CAG|GTATGTCTAG...CTGGACTTATCC/ATTAATTTGATT...CACAG|GTT 0 1 17.722
213115441 GT-AG 0 0.0005805996088728 10512 rna-XM_008667397.3 38490385 4 296594783 296605294 Zea mays 4577 GCT|GTAAGTTGAA...CTTTCTTTAAAC/CTTTCTTTAAAC...TGCAG|GTT 0 1 18.96
213115442 GT-AG 0 1.000000099473604e-05 114 rna-XM_008667397.3 38490385 5 296594476 296594589 Zea mays 4577 ATG|GTGTGTACTC...GTCTCTTTTTCA/CTCTTTTTCATG...TGCAG|GTG 1 1 21.236
213115443 GT-AG 0 5.62636761437585e-05 94 rna-XM_008667397.3 38490385 6 296592601 296592694 Zea mays 4577 CTG|GTAAGCTTGA...TAATTTTTGCTG/TTTTTGCTGATA...TATAG|GTA 0 1 42.236
213115444 GT-AG 0 1.000000099473604e-05 165 rna-XM_008667397.3 38490385 7 296592223 296592387 Zea mays 4577 CGG|GTAGGTATTA...TTAATTTTGTCA/AATTTTGTCAGT...TGTAG|GTA 0 1 44.747
213115445 GT-AG 0 1.000000099473604e-05 72 rna-XM_008667397.3 38490385 8 296589886 296589957 Zea mays 4577 CAG|GTTGGTGAAT...CTCACCTTATTC/CTGGAATTTACC...GACAG|GTA 0 1 71.454
213115446 GT-AG 0 0.0027551293667015 155 rna-XM_008667397.3 38490385 9 296589618 296589772 Zea mays 4577 AAG|GTAACTACTA...TTGTTTTTAATT/TTGTTTTTAATT...TTCAG|TAT 2 1 72.786
213115447 GT-AG 0 5.316477620221726e-05 172 rna-XM_008667397.3 38490385 10 296589058 296589229 Zea mays 4577 CAT|GTAAGTTGCT...TTTGACTTAATA/CTTGTTCTCATG...TGTAG|GTC 0 1 77.361
213115448 GT-AG 0 1.000000099473604e-05 2136 rna-XM_008667397.3 38490385 11 296586604 296588739 Zea mays 4577 AAG|GTAATAAACA...TGTTTCTTATCA/TTGTTTCTTATC...TGTAG|GTT 0 1 81.111
213115449 GT-AG 0 1.000000099473604e-05 208 rna-XM_008667397.3 38490385 12 296586138 296586345 Zea mays 4577 CAG|GTTAGTATCT...AATTTTTTGATG/AATTTTTTGATG...TGCAG|GGA 0 1 84.153

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