Difference between revisions of "PSYC 7102: Statistical-Genetics"

From Vrieze Wiki
Jump to navigation Jump to search
Line 4: Line 4:
 
= Command Line and Other Coding Resources =
 
= Command Line and Other Coding Resources =
 
[https://www.codecademy.com/learn/learn-the-command-line Code Academy]
 
[https://www.codecademy.com/learn/learn-the-command-line Code Academy]
 +
 
[https://www.coursera.org/course/gencommand Coursera]
 
[https://www.coursera.org/course/gencommand Coursera]
  

Revision as of 03:46, 14 November 2015

Homework

Homework 6: Ancestry

Command Line and Other Coding Resources

Code Academy

Coursera

Code Samples (Please add!)

Here are some useful server management tools

 df -h              ### Show space availability in all directories
 df -h /directory   ### Show disk space in /directory
 
 top                ### Show resource utilization and job status, etc.
 htop               ### Souped up "top"

PBS batch queuing (used on vieques and research computing)

 ### PBS batch system utilities
 qstat              ### On PBS batch system shows status of submitted jobs
 watch qstat        ### Refreshes "qstat" every second.
 
 ### Submit interactive pbs job in the short queue for 23 hours on 1 node with 22 CPUs
 ###   Having 22 or 23 CPUs is helpful when you're running per-chromosome jobs.
 qsub -I -q short -l walltime=23:00:00 -l nodes=1:ppn=22