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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
140325240 GT-AG 0 1.000000099473604e-05 92 rna-XM_015766227.2 25439159 1 7183038 7183129 Oryza sativa 4530 AAC|GTAATGCTAC...GTTCCGGTGATC/GGTGACGTCATG...TGCAG|CCG 0 1 20.527
140325241 GT-AG 0 1.000000099473604e-05 204 rna-XM_015766227.2 25439159 2 7182564 7182767 Oryza sativa 4530 GAG|GTCAGTGCTC...CAGATCATAGCT/TGAGGTTTCAAT...CCTAG|GAA 0 1 26.942
140325242 GT-AG 0 1.000000099473604e-05 98 rna-XM_015766227.2 25439159 3 7182356 7182453 Oryza sativa 4530 GAG|GTAAGCTAGC...GATGTGATGATG/GATGTGATGATG...TGCAG|TTC 2 1 29.556
140325243 GT-AG 0 0.0022897550707864 338 rna-XM_015766227.2 25439159 4 7180788 7181125 Oryza sativa 4530 ACG|GTAACCCCAA...AAAATCTCAACT/TCTCAACTTATT...TTCAG|GCG 2 1 58.779
140325244 GT-AG 0 1.000000099473604e-05 92 rna-XM_015766227.2 25439159 5 7180551 7180642 Oryza sativa 4530 CTA|GTAAAAACAA...TCATGTTTGATG/AAAAATCTCATG...GTCAG|GTG 0 1 62.224
140325245 GT-AG 0 1.000000099473604e-05 381 rna-XM_015766227.2 25439159 6 7179921 7180301 Oryza sativa 4530 ATG|GTAGTATTGG...TTTTTTTTTTTT/CTGGATTTCATA...TGTAG|GAG 0 1 68.14
140325246 GT-AG 0 1.000000099473604e-05 151 rna-XM_015766227.2 25439159 7 7179460 7179610 Oryza sativa 4530 GCG|GTTGGTCACA...ACATTTTTATCC/TTTATCCTAACA...TTCAG|AGG 1 1 75.505
140325247 GT-AG 0 1.000000099473604e-05 82 rna-XM_015766227.2 25439159 8 7179253 7179334 Oryza sativa 4530 ATT|GTAATTGCAT...CGGTTTTTACTG/CCGGTTTTTACT...TCCAG|GAT 0 1 78.475
140325248 GT-AG 0 2.754903487111767e-05 94 rna-XM_015766227.2 25439159 9 7179042 7179135 Oryza sativa 4530 AAG|GTTTAATTCT...TCAGTTTTAGAA/TGTAGTTTCAGT...TTCAG|GTC 0 1 81.254
140325249 GT-AG 0 0.0032147288818664 99 rna-XM_015766227.2 25439159 10 7178811 7178909 Oryza sativa 4530 AGA|GTATGTCTAA...AGAAATTTAACA/AACATGTTCATC...ACCAG|GTG 0 1 84.391
140325250 GT-AG 0 1.000000099473604e-05 75 rna-XM_015766227.2 25439159 11 7178616 7178690 Oryza sativa 4530 AAG|GTGATCGATC...GCCACCTAACTT/GGCCACCTAACT...TGCAG|GTG 0 1 87.242
140325251 GT-AG 0 0.0015987715579622 595 rna-XM_015766227.2 25439159 12 7177757 7178351 Oryza sativa 4530 AAG|GTACCAATAA...GTTCTCTTTTTT/CATGTGGTGATG...TGCAG|ATA 0 1 93.514
140325252 GT-AG 0 1.000000099473604e-05 129 rna-XM_015766227.2 25439159 13 7177373 7177501 Oryza sativa 4530 CAG|GTTTGGAAAA...CTTGTCTTGGTT/GTGGTACTCACA...TGCAG|GCT 0 1 99.572

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