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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
87512717 GT-AG 0 0.0004799641115756 821 Gotom.A01G122300.1.v1.1 16457642 1 20096330 20097150 Gossypium tomentosum 34277 CAG|GTCCCTCTGT...CCATTCATATCA/TATCAATTTATC...TGCAG|ATA 0 1 4.373
87512718 GT-AG 0 4.420644071013366e-05 1087 Gotom.A01G122300.1.v1.1 16457642 2 20094144 20095230 Gossypium tomentosum 34277 GAG|GTATGATAAT...ACATATTTAACA/ACATATTTAACA...CACAG|AGG 1 1 39.974
87512719 GT-AG 0 0.2371597546417476 85 Gotom.A01G122300.1.v1.1 16457642 3 20093840 20093924 Gossypium tomentosum 34277 CTG|GTATTCGTTA...TTTCTCTTAATA/CATTTTGTCATC...GTTAG|GTT 1 1 47.068
87512720 GC-AG 0 1.000000099473604e-05 245 Gotom.A01G122300.1.v1.1 16457642 4 20093374 20093618 Gossypium tomentosum 34277 AAG|GCATGGCATC...GTTTCTTTGAAA/TCCTTCCTGAAT...AGCAG|GTT 0 1 54.227
87512721 GT-AG 0 1.000000099473604e-05 398 Gotom.A01G122300.1.v1.1 16457642 5 20092901 20093298 Gossypium tomentosum 34277 CTT|GTGAGCATTT...TTGTCTTTCTTA/GTCTTTCTTATT...TTCAG|GTC 0 1 56.657
87512722 GT-AG 0 1.000000099473604e-05 84 Gotom.A01G122300.1.v1.1 16457642 6 20092745 20092828 Gossypium tomentosum 34277 GAG|GTACTACCAA...ATGTCATTGATT/TGATTTCTGACT...TGTAG|GCT 0 1 58.989
87512723 GT-AG 0 0.3361690552061653 1393 Gotom.A01G122300.1.v1.1 16457642 7 20091253 20092645 Gossypium tomentosum 34277 CAG|GTAGCCTTAC...TTTTCTTTATTT/CTTTATTTCACC...TTTAG|GGG 0 1 62.196
87512724 GT-AG 0 1.000000099473604e-05 76 Gotom.A01G122300.1.v1.1 16457642 8 20091105 20091180 Gossypium tomentosum 34277 CAG|GTAAATTTAA...AATTTTCTGACA/AATTTTCTGACA...TCTAG|GTC 0 1 64.529
87512725 GT-AG 0 0.6380430584692716 905 Gotom.A01G122300.1.v1.1 16457642 9 20090085 20090989 Gossypium tomentosum 34277 CGG|GTACCTTTTA...TTGTCCTTTTCA/CATTTACTAATT...TTAAG|GTT 1 1 68.254
87512726 GT-AG 0 1.904935302666708e-05 104 Gotom.A01G122300.1.v1.1 16457642 10 20089912 20090015 Gossypium tomentosum 34277 AAG|GTCTTTCCTT...GGTTCTGTAACA/ATTTTATTCATC...TTCAG|GAT 1 1 70.489
87512727 GT-AG 0 0.0019338623747464 88 Gotom.A01G122300.1.v1.1 16457642 11 20089523 20089610 Gossypium tomentosum 34277 ACA|GTATGGATGA...AATTCCTTCTCT/TTTTTTCTCATT...GACAG|AAA 2 1 80.24
87512728 GT-AG 0 0.0003698059288071 403 Gotom.A01G122300.1.v1.1 16457642 12 20089038 20089440 Gossypium tomentosum 34277 AAG|GTGACCCTGA...TGATCTTTAATG/TTAGTCTTGATC...GGCAG|GAC 0 1 82.896

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