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

✎ 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
2994367 GT-AG 0 1.000000099473604e-05 788 rna-XM_031716375.1 529133 1 364473 365260 Actinia tenebrosa 6105 GAG|GTAAGACAGG...CTGTCTTTAAAA/AAGTTATTAACT...TTCAG|TTT 0 1 10.723
2994368 GT-AG 0 0.0004318712483677 677 rna-XM_031716375.1 529133 2 365304 365980 Actinia tenebrosa 6105 GTG|GTAAGTTTTT...CTAACTTTAATT/CTAACTTTAATT...TGCAG|AGT 1 1 14.064
2994369 GT-AG 0 1.000000099473604e-05 223 rna-XM_031716375.1 529133 3 366109 366331 Actinia tenebrosa 6105 GAG|GTCAGATACT...GTTTGTTTGAAT/GTTTGTTTGAAT...TTCAG|GCC 0 1 24.009
2994370 GT-AG 0 1.000000099473604e-05 525 rna-XM_031716375.1 529133 4 366375 366899 Actinia tenebrosa 6105 CAG|GTAAAATCTT...TATATTTTATTA/TTATATTTTATT...TATAG|AGC 1 1 27.35
2994371 GT-AG 0 0.0079371856444499 341 rna-XM_031716375.1 529133 5 366955 367295 Actinia tenebrosa 6105 AAG|GTATGTTATT...TGTACTTTAATT/TTTTTTCTAAAA...TTCAG|TTC 2 1 31.624
2994372 GT-AG 0 1.000000099473604e-05 1478 rna-XM_031716375.1 529133 6 367362 368839 Actinia tenebrosa 6105 GAG|GTCAGTATAC...TTTTTCCTATTT/TCATTCCTAATA...TACAG|ACT 2 1 36.752
2994373 GT-AG 0 0.0002186247328499 617 rna-XM_031716375.1 529133 7 368915 369531 Actinia tenebrosa 6105 AAG|GTATGTCTGC...AAAACATTATTC/ACATTATTCACA...TCTAG|TTT 2 1 42.58
2994374 GT-AG 0 9.887955681394296e-05 709 rna-XM_031716375.1 529133 8 369622 370330 Actinia tenebrosa 6105 TAC|GTAAGTTGTT...TTGTATTTATCT/TTTGTATTTATC...ATCAG|TGA 2 1 49.573
2994375 GT-AG 0 0.0010356501695817 87 rna-XM_031716375.1 529133 9 370425 370511 Actinia tenebrosa 6105 ATG|GTATGTTGGC...TTTACCGTACCT/AAGTGTTTAATT...TGAAG|GTG 0 1 56.876
2994376 GT-AG 0 1.000000099473604e-05 612 rna-XM_031716375.1 529133 10 370628 371239 Actinia tenebrosa 6105 GAG|GTAATTATGA...ATTTTCTCATTA/CATTTTCTCATT...GACAG|ACT 2 1 65.89
2994377 GT-AG 0 1.000000099473604e-05 621 rna-XM_031716375.1 529133 11 371296 371916 Actinia tenebrosa 6105 AAG|GTATGGACAT...ATAACCTAACCC/AATAACCTAACC...TTCAG|GTA 1 1 70.241
2994378 GT-AG 0 1.000000099473604e-05 529 rna-XM_031716375.1 529133 12 372003 372531 Actinia tenebrosa 6105 AAG|GTAAGACCAC...GAAATTTTATTT/AGAAATTTTATT...TTCAG|TAC 0 1 76.923
2994379 GT-AG 0 1.000000099473604e-05 451 rna-XM_031716375.1 529133 13 372661 373111 Actinia tenebrosa 6105 CAG|GTTAGTGTTG...TCAGTTTTATTA/ATCAGTTTTATT...TACAG|GAA 0 1 86.946
2994380 GT-AG 0 1.000000099473604e-05 1055 rna-XM_031716375.1 529133 14 373192 374246 Actinia tenebrosa 6105 ATG|GTAAGTACAT...TTGACCTTAGCG/CTTTCACTAATA...CTTAG|GGA 2 1 93.162

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