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

✎ 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
2995026 GT-AG 0 1.8215319184740187e-05 992 rna-XM_031702962.1 529191 1 26924 27915 Actinia tenebrosa 6105 GAG|GTACAGACTG...CTCACCTTGAAT/TAGCTGTTAATT...GCTAG|ACT 0 1 8.211
2995027 GT-AG 0 1.000000099473604e-05 388 rna-XM_031702962.1 529191 2 26359 26746 Actinia tenebrosa 6105 AGG|GTAAGAAAAA...TGAACATTAATT/GCTTTGTTTATT...CATAG|TTA 0 1 16.862
2995028 GT-AG 0 1.000000099473604e-05 374 rna-XM_031702962.1 529191 3 25855 26228 Actinia tenebrosa 6105 AAG|GTAAATGAAA...ATTTACTTAATT/CATTTATTTACT...TTTAG|ACT 1 1 23.216
2995029 GT-AG 0 1.000000099473604e-05 469 rna-XM_031702962.1 529191 4 25182 25650 Actinia tenebrosa 6105 TAG|GTAAAGAAAT...TTAGTTTTATAA/ATTAGTTTTATA...TCAAG|GTT 1 1 33.187
2995030 GT-AG 0 0.0002737179024677 380 rna-XM_031702962.1 529191 5 24650 25029 Actinia tenebrosa 6105 CGA|GTAAGTTTAG...TAATTTTTAAAA/GTAATATTTATA...AACAG|GGG 0 1 40.616
2995031 GT-AG 0 4.227310807621326e-05 124 rna-XM_031702962.1 529191 6 24395 24518 Actinia tenebrosa 6105 AAG|GTACTAATTT...ATTGTCTTGAAT/ATTGTCTTGAAT...TTTAG|GCA 2 1 47.019
2995032 GT-AG 0 1.000000099473604e-05 326 rna-XM_031702962.1 529191 7 23917 24242 Actinia tenebrosa 6105 TTG|GTAAGTCCAA...ACTCTCTTCAAG/TACCAACTGATC...TGCAG|ATG 1 1 54.448
2995033 GT-AG 0 1.000000099473604e-05 530 rna-XM_031702962.1 529191 8 23315 23844 Actinia tenebrosa 6105 CAG|GTAAGATGAT...AACCATTTATCT/TAACCATTTATC...CGCAG|ACA 1 1 57.967
2995034 GT-AG 0 0.0009048083082843 369 rna-XM_031702962.1 529191 9 22637 23005 Actinia tenebrosa 6105 TAG|GTAACATTGC...ATCACTTTAAAT/AATTTATTAATT...TTTAG|GAA 1 1 73.069
2995035 GT-AG 0 7.171661013525057e-05 131 rna-XM_031702962.1 529191 10 22426 22556 Actinia tenebrosa 6105 CAG|GTATGAATCA...ATGGTTTTAATA/ATGGTTTTAATA...CACAG|GTG 0 1 76.979
2995036 GT-AG 0 1.000000099473604e-05 665 rna-XM_031702962.1 529191 11 21620 22284 Actinia tenebrosa 6105 TGG|GTAAGATATT...GTGTTTTTACTG/TGTGTTTTTACT...TGCAG|ATG 0 1 83.871
2995037 GT-AG 0 1.0162195352075669e-05 489 rna-XM_031702962.1 529191 12 21022 21510 Actinia tenebrosa 6105 CAG|GTACAGTGAA...AGTTTTTTATTA/TAGTTTTTTATT...TTCAG|GCA 1 1 89.198
2995038 GT-AG 0 1.000000099473604e-05 96 rna-XM_031702962.1 529191 13 20832 20927 Actinia tenebrosa 6105 AAG|GTAATACAAT...TAATCTATGACT/TGTGAATTAATC...TGTAG|ACC 2 1 93.793
2995039 GT-AG 0 0.0206863216674612 157 rna-XM_031702962.1 529191 14 20610 20766 Actinia tenebrosa 6105 TAG|GTATTTTTCA...CGTGTTTTAGTT/TTGTGATTTACT...TACAG|GTG 1 1 96.97

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