NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Moved questions into a hidden comment. Updated based on reply from Sunita and meeting with Zhengwu.

...

  1. Prepare Java:

    1. Download Java 1.8.x from the following page: 

      https://www.java.com/en/download/
      Multiexcerpt include
      MultiExcerptNameExitDisclaimer
      nopaneltrue
      PageWithExcerptwikicontent:Exit Disclaimer to Include
    2. Install Java, as described in the following installation instructions: 

      https://www.java.com/en/download/help/index_installing.xml
      Multiexcerpt include
      MultiExcerptNameExitDisclaimer
      nopaneltrue
      PageWithExcerptwikicontent:Exit Disclaimer to Include
    3. Update your PATH system variable with the Java executable folder. For example: 

      c:/jdk1.8_13/bin 

      For details, refer to the following instructions:

      https://java.com/en/download/help/path.xml
      Multiexcerpt include
      MultiExcerptNameExitDisclaimer
      nopaneltrue
      PageWithExcerptwikicontent:Exit Disclaimer to Include
    4. Check whether you have performed the previous steps correctly: Open a cmd or shell window and type the following command. The command output should display the version of Java you intended to install:

      Code Block
      java –version
  2. Prepare the DME CLU:

    1. If you are using Windows, install Cygwin as described in the following site:
      https://www.cygwin.com/
      Multiexcerpt include
      MultiExcerptNameExitDisclaimer
      nopaneltrue
      PageWithExcerptwikicontent:Exit Disclaimer to Include
    2. Use the following command to clone DME utilities to your local machine:

      Code Block
      Git clone https://github.com/CBIIT/HPC_DME_APIs


    3. For further instructions, refer to the following file: 

      https://github.com/CBIIT/HPC_DME_APIs/blob/master/utils/README.md
      Multiexcerpt include
      MultiExcerptNameExitDisclaimer
      nopaneltrue
      PageWithExcerptwikicontent:Exit Disclaimer to Include

...


HTML Comment
hiddentrue

Ruth drafted the above instructions based on instructions in the DME user guide in GitHub. Zhengwu later suggested following the Getting Started guide in GitHub instead.

Notes on the instructions in the above readme: 

...

  • Save the hpcdme.properties file (the copy of hpcdme.properties-

...

  • sample) to the same folder. 
  • No need to edit the server lines. Just Uncomment the lines for the server: either Production or UAT.
  • Define the environment variable HPC_DM_UTILS as a system environment variable if possible. Otherwise, define it as a user environment variable.  
  • The sed command (for Windows) seems to change the line endings in the functions file.
  • The export command seems to be preparation for the source command. 
  • The source command seems to run the functions file.
  • The functions file has comments explaining each command it contains:
    • An export command that adds the utilities (the scripts folder) to the PATH environment variable.
    • Two sed commands (for Windows) that change the line endings in each file in the scripts folder and the line endings in the hpcdme.properties-sample file.

Questions:

  • Why not change line endings in the hpcdme.properties file, too?
  • Should these instructions be moved from the readme to this wiki?

...