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

✎ 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
347295 GT-AG 0 1.000000099473604e-05 981 rna-XM_022256408.1 76521 1 5739284 5740264 Acanthaster planci 133434 GCG|GTAAGTAAAG...CTTCCTTTAACT/CTTCCTTTAACT...TTCAG|GAG 0 1 3.158
347296 GT-AG 0 4.799117177533492e-05 456 rna-XM_022256408.1 76521 2 5738680 5739135 Acanthaster planci 133434 TTA|GTAAGCGGCT...TATTTTTCAATT/TTATTTTTCAAT...ATTAG|CAA 1 1 11.813
347297 GT-AG 0 1.000000099473604e-05 760 rna-XM_022256408.1 76521 3 5737852 5738611 Acanthaster planci 133434 GTG|GTAAGTTCCA...GTGATTTTATTG/GTTTTACTCAAT...TTTAG|GTC 0 1 15.789
347298 GT-AG 0 1.5752310716934293e-05 2088 rna-XM_022256408.1 76521 4 5735613 5737700 Acanthaster planci 133434 TGG|GTAGGTTGGA...CATGTCTTGGTT/TCTTGGTTCATC...TACAG|ATG 1 1 24.62
347299 GT-AG 0 1.000000099473604e-05 4160 rna-XM_022256408.1 76521 5 5731373 5735532 Acanthaster planci 133434 AAG|GTAATGTCAT...TTCTTTTTGTTT/ATTTTTTCCATG...TAAAG|GTG 0 1 29.298
347300 GT-AG 0 0.0003548392616186 691 rna-XM_022256408.1 76521 6 5730553 5731243 Acanthaster planci 133434 GCT|GTAAGTTATT...GAGACGTTGATG/GATGGCATAATT...CTCAG|ATG 0 1 36.842
347301 GT-AG 0 4.955456766987354e-05 1331 rna-XM_022256408.1 76521 7 5729133 5730463 Acanthaster planci 133434 AAT|GTACGTAGAA...TTGTTATTGATT/TTGTTATTGATT...TCTAG|CCT 2 1 42.047
347302 GT-AG 0 1.000000099473604e-05 1047 rna-XM_022256408.1 76521 8 5727977 5729023 Acanthaster planci 133434 AAG|GTGAGTCTAG...ATTTCCTTGTTT/TAACTCCTCACA...CTCAG|GCA 0 1 48.421
347303 GT-AG 0 1.000000099473604e-05 688 rna-XM_022256408.1 76521 9 5727190 5727877 Acanthaster planci 133434 AAG|GTAAGTGTTC...ATGTTCCTAATG/TTTGCTCTCACT...GATAG|CTT 0 1 54.211
347304 GT-AG 0 1.5408063267922e-05 504 rna-XM_022256408.1 76521 10 5726539 5727042 Acanthaster planci 133434 AAG|GTATTGAGCA...GTTTTCTTCCTA/TGGATATTTATT...TCCAG|TAT 0 1 62.807
347305 GT-AG 0 0.0007598262879584 880 rna-XM_022256408.1 76521 11 5725538 5726417 Acanthaster planci 133434 CAG|GTATCGGGAC...CATTCCTTTTTG/CTCTAAATAACC...TTTAG|GCA 1 1 69.883
347306 GT-AG 0 1.000000099473604e-05 579 rna-XM_022256408.1 76521 12 5724841 5725419 Acanthaster planci 133434 TGA|GTAAGAGCCA...CAATCTTTACTT/TTTTTATTCATA...TCAAG|ACT 2 1 76.784
347307 GT-AG 0 1.000000099473604e-05 360 rna-XM_022256408.1 76521 13 5724334 5724693 Acanthaster planci 133434 AAG|GTGAGCCATT...CTTTCCTGAAAA/TCTTTCCTGAAA...CGCAG|TTT 2 1 85.38
347308 GT-AG 0 1.000000099473604e-05 578 rna-XM_022256408.1 76521 14 5723635 5724212 Acanthaster planci 133434 TCG|GTAAGAACTC...GTGTCTTTTTCC/CAAAATCCCATG...CTCAG|GCG 0 1 92.456

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