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)

12 rows where transcript_id = 30057349

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, 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
168293521 GT-AG 0 0.0003910272314934 1348 rna-XM_007419856.2 30057349 1 982941 984288 Python bivittatus 176946 CGG|GTAGCGTGAA...CTTTTCTTTGTG/TTCAAAATGACT...TTCAG|CTA 0 1 2.595
168293522 GT-AG 1 99.42030059108872 566 rna-XM_007419856.2 30057349 2 984362 984927 Python bivittatus 176946 CCA|GTATCCTTTG...AACTCTTTAACA/GTTTTGCTAACT...TCCAG|AGA 1 1 6.805
168293523 GT-AG 0 1.000000099473604e-05 138 rna-XM_007419856.2 30057349 3 985020 985157 Python bivittatus 176946 AAG|GTAAAAAGTG...ATACTTTTAAAT/TCTATATTCACA...CTTAG|GTG 0 1 12.111
168293524 GT-AG 0 1.000000099473604e-05 944 rna-XM_007419856.2 30057349 4 985252 986195 Python bivittatus 176946 TAG|GTAGGTCAGA...TGCCCCTTTGCT/TGCTGCTTCACC...TGTAG|GGT 1 1 17.532
168293525 GT-AG 0 1.000000099473604e-05 114 rna-XM_007419856.2 30057349 5 986264 986377 Python bivittatus 176946 CAG|GTGAGTGACA...TTGCCCTTTGCT/CCTTTGCTTACC...TTTAG|GAC 0 1 21.453
168293526 GT-AG 0 2.59939804081878e-05 2240 rna-XM_007419856.2 30057349 6 986457 988696 Python bivittatus 176946 CAG|GTAAACTAAT...TTGGTCTTCTTT/GCTCCTTTTATG...CCTAG|GTA 1 1 26.009
168293527 GT-AG 0 7.268628860745666e-05 572 rna-XM_007419856.2 30057349 7 988763 989334 Python bivittatus 176946 CTA|GTAAGTATTG...TTCCTTTTATTG/TTTCCTTTTATT...TCCAG|CGT 1 1 29.815
168293528 GT-AG 0 1.000000099473604e-05 572 rna-XM_007419856.2 30057349 8 989539 990110 Python bivittatus 176946 GAG|GTAGGAGACA...TCAGTCGTATCA/AGTCGTATCACA...CACAG|TGA 1 1 41.58
168293529 GT-AG 0 1.000000099473604e-05 378 rna-XM_007419856.2 30057349 9 990265 990642 Python bivittatus 176946 AAG|GTAAGAGAGA...CCAACATTAATT/CCAACATTAATT...TTTAG|GAT 2 1 50.461
168293530 GT-AG 0 1.000000099473604e-05 508 rna-XM_007419856.2 30057349 10 990757 991264 Python bivittatus 176946 AGA|GTAAGAACCC...GCTTCCTTTTCT/TCTTCTCTCACT...CATAG|GTG 2 1 57.036
168293531 GT-AG 0 1.000000099473604e-05 523 rna-XM_007419856.2 30057349 11 991344 991866 Python bivittatus 176946 ATG|GTGAGGAAAC...GTCTCCCTAACT/GTCTCCCTAACT...CACAG|AGG 0 1 61.592
168293532 GT-AG 0 8.953015024698483e-05 1201 rna-XM_007419856.2 30057349 12 992002 993202 Python bivittatus 176946 AAG|GTAATCCTGT...TCGTTCTTGGCA/TTCTATCCCACT...AACAG|ATA 0 1 69.377

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