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

✎ 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
143078155 GT-AG 0 0.0017247982569808 727 rna-XM_025947242.1 25832547 1 54189110 54189836 Panicum hallii 206008 CAG|GTATGCACTT...ATTTGTTTGATA/ATTTGTTTGATA...TGCAG|AGG 0 1 18.195
143078156 GT-AG 0 1.000000099473604e-05 173 rna-XM_025947242.1 25832547 2 54188887 54189059 Panicum hallii 206008 AAG|GTACTAATAC...TATGTCCTAATT/TATGTCCTAATT...TGCAG|CGC 2 1 19.428
143078157 GT-AG 0 1.000000099473604e-05 80 rna-XM_025947242.1 25832547 3 54188650 54188729 Panicum hallii 206008 CAA|GTAAAGCCTT...TGCATTTTAACC/TGCATTTTAACC...TGCAG|GAG 0 1 23.299
143078158 GT-AG 0 2.879934484287644e-05 673 rna-XM_025947242.1 25832547 4 54187758 54188430 Panicum hallii 206008 ACG|GTTTGTATTA...AATGCATTAGAC/CCTGTTATGATG...TGCAG|GTA 0 1 28.698
143078159 GT-AG 0 4.132060713456176e-05 631 rna-XM_025947242.1 25832547 5 54186998 54187628 Panicum hallii 206008 GCG|GTACGTAGTC...CTTTTGTTGATG/GATATTTTCACT...CACAG|GGT 0 1 31.879
143078160 GT-AG 0 1.000000099473604e-05 1115 rna-XM_025947242.1 25832547 6 54184365 54185479 Panicum hallii 206008 CAG|GTGATCACCT...CTTTTTTTATTT/TTTTTATTTACT...TCCAG|CTC 0 1 69.305
143078161 GT-AG 0 1.000000099473604e-05 73 rna-XM_025947242.1 25832547 7 54183932 54184004 Panicum hallii 206008 CAG|GTTAGTTAAT...TTCCTCTCATTG/CTTCCTCTCATT...TGTAG|AAA 0 1 78.18
143078162 GT-AG 0 8.71435338115321e-05 201 rna-XM_025947242.1 25832547 8 54183611 54183811 Panicum hallii 206008 CAG|GTATGGATCC...TTTGTTTTAGCT/CATTTACTGATT...TGCAG|GAT 0 1 81.139
143078163 GT-AG 0 8.23858794912319e-05 137 rna-XM_025947242.1 25832547 9 54183303 54183439 Panicum hallii 206008 AAG|GTGTGTTTTG...TTTTCTTCAATT/TTTTTCTTCAAT...CCCAG|GAG 0 1 85.355
143078164 GT-AG 0 1.000000099473604e-05 191 rna-XM_025947242.1 25832547 10 54182953 54183143 Panicum hallii 206008 GAG|GTGAATGCAG...GAATCCTTACCT/TGAATCCTTACC...TACAG|GTT 0 1 89.275
143078165 GT-AG 0 0.5981437886790477 102 rna-XM_025947242.1 25832547 11 54182725 54182826 Panicum hallii 206008 CAG|GTATCTTCCT...ACAACCTTGTTT/GTGATAGTTATA...TACAG|GTT 0 1 92.382

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