Entering edit mode
4.4 years ago
okiedokie1208
▴
40
I recently used PLINK to remove missingness in my SNPs data. I always saw message from terminal
Web-based version check ( --noweb to skip ) Recent cached web-check found...Problem connecting to web
Writing this text to log file [ HapMap_3_r3_4.log ] Analysis started: Thu May 6 20:03:31 2021
Although I used --noweb to skip connecting web, I am afraid I will use the web-based function in the future. Does anyone know if this is always happen in the PLINK? I'm using pLINK
If you want to use 1.07 version, you could use a small trick as shown below.
Add to your .bashrc file
alias plink='plink --noweb'
The hack creates an alias for the "plink" command with "--noweb" option. After that source the .bashrc file once and VoilĂ !
Here, I assumed that the PLINK is already added to the path variable using a command like this:
export PATH="/opt/plink-1.07-x86_64:${PATH}"