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

✎ 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
123545245 GT-AG 0 1.000000099473604e-05 339 Myper.0001s0195.1.v2.1 22773487 1 3104529 3104867 Myagrum perfoliatum 359867 CCG|GTAATATAAT...AATTATTTGATG/AATTATTTGATG...TTCAG|GTG 2 1 1.662
123545246 GT-AG 0 1.000000099473604e-05 97 Myper.0001s0195.1.v2.1 22773487 2 3104252 3104348 Myagrum perfoliatum 359867 AAG|GTTTAATACC...TTTTTCTTCTTT/TTCTTTGTTATC...GTTAG|GTT 2 1 6.734
123545247 GT-AG 0 2.1490235990508537e-05 76 Myper.0001s0195.1.v2.1 22773487 3 3104055 3104130 Myagrum perfoliatum 359867 GTT|GTAAGTAAGC...AGAATTTTAACG/AGAATTTTAACG...TACAG|GTG 0 1 10.144
123545248 GT-AG 0 0.0009921812518043 235 Myper.0001s0195.1.v2.1 22773487 4 3103777 3104011 Myagrum perfoliatum 359867 AAG|GTATGGTATA...TGGCCCTTGATC/CTTGATCTTACA...ATCAG|GTA 1 1 11.355
123545249 GT-AG 0 2.6424626042148284e-05 79 Myper.0001s0195.1.v2.1 22773487 5 3103645 3103723 Myagrum perfoliatum 359867 GAG|GTTACTTGGC...ATCTTCTTGCAT/ATTAATTTCATC...GACAG|CCT 0 1 12.849
123545250 GT-AG 0 0.0227890133024538 93 Myper.0001s0195.1.v2.1 22773487 6 3103496 3103588 Myagrum perfoliatum 359867 TAA|GTATGCCCCC...AAGTATTTGATT/AAGTATTTGATT...ATCAG|AGT 2 1 14.427
123545251 GT-AG 0 1.000000099473604e-05 106 Myper.0001s0195.1.v2.1 22773487 7 3103237 3103342 Myagrum perfoliatum 359867 GAT|GTGAGAGTAA...ATATCGTTATCT/TTTTGCTTCATT...CATAG|GGA 2 1 18.738
123545252 GT-AG 0 1.000000099473604e-05 92 Myper.0001s0195.1.v2.1 22773487 8 3102957 3103048 Myagrum perfoliatum 359867 ATG|GTAAGATGAT...ATATTTATACCA/TCAATATTTATA...TTCAG|ATG 1 1 24.035
123545253 GT-AG 0 1.000000099473604e-05 130 Myper.0001s0195.1.v2.1 22773487 9 3101592 3101721 Myagrum perfoliatum 359867 AAG|GTAAAATCTC...CCATCCTTTGTT/CTTTGCATCACA...TTTAG|GAA 0 1 58.833
123545254 GT-AG 0 0.0003100964442386 85 Myper.0001s0195.1.v2.1 22773487 10 3100574 3100658 Myagrum perfoliatum 359867 TTA|GTAAGCATTC...TGTTTTTTTGCT/TTTCTGTTTACT...TTCAG|GTA 0 1 85.123
123545255 GT-AG 0 1.000000099473604e-05 159 Myper.0001s0195.1.v2.1 22773487 11 3100009 3100167 Myagrum perfoliatum 359867 AAG|GTACAGACCT...TATGTTTTGTTA/TTATGTATAACT...TCCAG|CTT 1 1 96.562
123545256 GT-AG 0 1.000000099473604e-05 149 Myper.0001s0195.1.v2.1 22773487 12 3099794 3099942 Myagrum perfoliatum 359867 AAT|GTAAGTAAAA...TGTACTTTTATT/CACTTTTTCATT...TCCAG|CTT 1 1 98.422

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