Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
ControlStructuresAndUse.vue 2.58 KiB
<template>
  <v-card>
    <v-card-text>
      <v-row>
        <v-col cols="6">
          <v-card tile elevation="0">
            <v-card-title>PFI-6 Chemical Probe</v-card-title>
            <v-img
              height="250"
              src="https://www.ebi.ac.uk/chembl/api/data/image/CHEMBL160074.svg"
            ></v-img>
            <v-card-subtitle>
              <a
                href="https://www.ebi.ac.uk/chembl/compound_report_card/CHEMBL160074"
                >CHEMBL160074</a
              >
            </v-card-subtitle>
            <v-card-text>
              <TextToClipboard
                text="Oc1ccc(CCc2ccc(O)c(O)c2)cc1O"
                title="smiles"
              />
              <TextToClipboard
                text="YNSCZVGCGAWBBE-UHFFFAOYSA-M"
                title="InChI Key"
              />
              <div><b>Molecular weight:</b> 357.26</div>
              <div>
                <b>Storage:</b>
                As a dry powder or as DMSO stock solutions (10mM) at -20 °C
              </div>
              <div>
                <b>Dissolution:</b>
                Soluble in DMSO up to 10mM
              </div>
            </v-card-text>
          </v-card>
        </v-col>
        <v-col cols="6">
          <v-card tile elevation="0">
            <v-card-title>PFI-6N Negative Control</v-card-title>
            <v-img
              height="250"
              src="https://www.ebi.ac.uk/chembl/api/data/image/CHEMBL1269459.svg"
            ></v-img>
            <v-card-subtitle>
              <a
                href="https://www.ebi.ac.uk/chembl/compound_report_card/CHEMBL1269459"
                >CHEMBL1269459</a
              >
            </v-card-subtitle>
            <v-card-text>
              <TextToClipboard
                text="Oc1ccc(CCc2ccc(O)c(O)c2)cc1O"
                title="smiles"
              />
              <TextToClipboard
                text="FYULQBSQDOYPJQ-UHFFFAOYSA-N"
                title="InChI Key"
              />
              <div><b>Molecular weight:</b> 246.26</div>
              <div>
                <b>Storage:</b>
                As a dry powder or as DMSO stock solutions (10mM) at -20 °C
              </div>
              <div>
                <b>Dissolution:</b>
                Soluble in DMSO up to 10mM
              </div>
            </v-card-text>
          </v-card>
        </v-col>
      </v-row>
    </v-card-text>
  </v-card>
</template>

<script>
import TextToClipboard from '~/web-components-submodule/components/common/TextToClipboard.vue'
export default {
  components: {
    TextToClipboard,
  },
}
</script>

<style></style>