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)

14 rows where transcript_id = 20642362

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
110537183 GT-AG 0 0.0001146651330515 398 rna-XM_008386922.3 20642362 1 14290182 14290579 Malus domestica 3750 AAG|GTAAGCATAC...ATGTTCTTAACA/ATGTTCTTAACA...TGCAG|GCA 1 1 3.362
110537184 GT-AG 0 0.0014553415966288 980 rna-XM_008386922.3 20642362 2 14288685 14289664 Malus domestica 3750 CAG|GTATGCCTTC...GCTCTCCTATTG/TTGTATTTTATG...TTTAG|GTA 2 1 21.853
110537185 GT-AG 0 2.3881570362442e-05 97 rna-XM_008386922.3 20642362 3 14288103 14288199 Malus domestica 3750 ATG|GTAAGCTGGG...GTGTTCTAATCA/AGTGTTCTAATC...TACAG|TGG 1 1 39.199
110537186 GT-AG 0 0.0002992435796607 393 rna-XM_008386922.3 20642362 4 14287559 14287951 Malus domestica 3750 ATT|GTAAGTTATT...GCTTTCTTAGAG/ACTTTGCTCATG...TTCAG|GGA 2 1 44.599
110537187 GT-AG 0 0.77614771652922 100 rna-XM_008386922.3 20642362 5 14287372 14287471 Malus domestica 3750 CCT|GTATGTTTGA...TAACTCTTATTT/TCTTATTTCAAT...TGCAG|GAA 2 1 47.711
110537188 GT-AG 0 0.0088689526055699 806 rna-XM_008386922.3 20642362 6 14286497 14287302 Malus domestica 3750 AGT|GTAGATTTCT...GTATCCCTGATT/ATTACCTTCATA...ATTAG|GGA 2 1 50.179
110537189 GT-AG 0 0.0036053012417026 93 rna-XM_008386922.3 20642362 7 14286332 14286424 Malus domestica 3750 ACT|GTAAGCTCTT...GCCTCCATAAAT/CATAAATTCATT...GACAG|AAA 2 1 52.754
110537190 GT-AG 0 2.1809046040354178e-05 102 rna-XM_008386922.3 20642362 8 14286158 14286259 Malus domestica 3750 GGG|GTGTGATTTT...AGTATTTTAAAA/AGTATTTTAAAA...TACAG|CCA 2 1 55.329
110537191 GT-AG 0 1.000000099473604e-05 1052 rna-XM_008386922.3 20642362 9 14284933 14285984 Malus domestica 3750 AGA|GTGAGTGCAT...TCTTTTTTAAAT/TCTTTTTTAAAT...TGCAG|ATT 1 1 61.516
110537192 GT-AG 0 1.000000099473604e-05 322 rna-XM_008386922.3 20642362 10 14284384 14284705 Malus domestica 3750 GAG|GTTGGATATT...TATGCCTTAAAA/GTTCTTTTAATG...CACAG|CTA 0 1 69.635
110537193 GT-AG 0 2.385535548631464e-05 97 rna-XM_008386922.3 20642362 11 14284160 14284256 Malus domestica 3750 ATG|GTACTGATCA...GTTCTTTTAAAA/AAATTACTGAAA...TTCAG|GGG 1 1 74.177
110537194 GC-AG 0 1.000000099473604e-05 473 rna-XM_008386922.3 20642362 12 14283618 14284090 Malus domestica 3750 GAG|GCAAGTGTTA...AGTACTTTCACT/AGTACTTTCACT...TTCAG|GTT 1 1 76.645
110537195 GT-AG 0 4.971822960536735e-05 444 rna-XM_008386922.3 20642362 13 14282984 14283427 Malus domestica 3750 GGA|GTAAGATTGT...TTACTTTTAAAC/TTACTTTTAAAC...TTCAG|GTA 2 1 83.441
110537196 GT-AG 0 0.0011402175126211 193 rna-XM_008386922.3 20642362 14 14282658 14282850 Malus domestica 3750 TGG|GTATGTTTGA...ATAATTGTGAAG/TGAAAACTAACA...TGCAG|GCA 0 1 88.197

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