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)

11 rows where transcript_id = 27988674

✎ 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
155531462 GT-AG 0 0.0014371984363939 147 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 1 1477037 1477183 Piromyces finnis 1754191 AAG|GTTTTTATTA...TATATCTTAACA/TTAACATTTATT...ATTAG|TTT 1 1 11.516
155531463 GT-AG 0 0.0015725939845767 113 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 2 1477517 1477629 Piromyces finnis 1754191 TCT|GTAATTACTA...TTATTTTTAATA/TATATATTTATT...TCCAG|CAA 1 1 23.426
155531464 GT-AG 0 0.0076690254848606 120 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 3 1477786 1477905 Piromyces finnis 1754191 AAC|GTATGTATTT...ATAATTTTACAC/TTCTATCTAATT...AATAG|AAA 1 1 29.006
155531465 GT-AG 0 0.0004357945271142 89 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 4 1477989 1478077 Piromyces finnis 1754191 CAA|GTATAAAAAT...AACATTTTAATT/TTTTAATTAATA...AAAAG|TTT 0 1 31.974
155531466 GT-AG 0 0.0005034749873672 99 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 5 1478205 1478303 Piromyces finnis 1754191 CAA|GTAATTATTA...TATTTTTTAATT/TATTTTTTAATT...ACTAG|TAT 1 1 36.516
155531467 GT-AG 0 0.0049557421185783 104 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 6 1478378 1478481 Piromyces finnis 1754191 AAG|GTATATTAAT...TATATTTTAATA/AAATTATTTATT...TTTAG|ACA 0 1 39.163
155531468 GT-AG 0 1.000000099473604e-05 86 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 7 1478608 1478693 Piromyces finnis 1754191 AGG|GTTAATATAA...TTTCTCTAAAAT/TAATAATTAATA...TGTAG|AGT 0 1 43.67
155531469 GT-AG 0 0.0015991056712352 159 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 8 1479181 1479339 Piromyces finnis 1754191 AAG|GTATATATAT...ATTATTTTATTG/CATTATTTTATT...ATCAG|ATC 1 1 61.087
155531470 GT-AG 0 0.115944915471888 78 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 9 1479819 1479896 Piromyces finnis 1754191 AAC|GTATGCATGA...TTATTTTTATTA/TTTATTTTTATT...AATAG|TGT 0 1 78.219
155531471 GT-AG 0 1.0171766798856456 109 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 10 1480020 1480128 Piromyces finnis 1754191 AAA|GTATGCTTAT...ATTATTTTAATT/ATTATTTTAATT...ATTAG|TAT 0 1 82.618
155531472 GT-AG 0 1.000000099473604e-05 112 rna-gnl|WGS:MCFH|BCR36DRAFT_mRNA341190 27988674 11 1480412 1480523 Piromyces finnis 1754191 CAG|GTAATATATA...TATACTATAATA/ATAATACTAAAT...AAAAG|GTA 1 1 92.74

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