Changes

From Genome Analysis Wiki
Jump to navigationJump to search
464 bytes added ,  09:25, 29 October 2012
no edit summary
Line 37: Line 37:  
       [lines deleted]
 
       [lines deleted]
 
     Disk /dev/xvdf doesn't contain a valid partition table  # This is OK
 
     Disk /dev/xvdf doesn't contain a valid partition table  # This is OK
 
+
 
  #  Device exists, good. Format it, destroying any data there, so be sure of the device name.
 
  #  Device exists, good. Format it, destroying any data there, so be sure of the device name.
 
  '''sudo mkfs -t ext4 -L seq /dev/xvdf'''
 
  '''sudo mkfs -t ext4 -L seq /dev/xvdf'''
Line 54: Line 54:  
  '''sudo fdisk -l /dev/xdvh'''
 
  '''sudo fdisk -l /dev/xdvh'''
 
  '''sudo mkfs -t ext4 -L umake /dev/xvdh'''
 
  '''sudo mkfs -t ext4 -L umake /dev/xvdh'''
 +
</code>
 +
 +
Now mount the formatted volumes so you have storage available to run the Pipeline.
 +
This example puts all of the data in your HOME directory under one place - myseq.
 +
You may, of course, use any paths you'd like.
 +
 +
<code>
 +
'''mkdir -p ~/myseq/seq ~/myseq/aligner ~/myseq/umake'''
 +
 +
'''sudo mount -t ext4 /dev/xvdf ~/myseq/seq'''
 +
'''sudo mount -t ext4 /dev/xvdg ~/myseq/aligner'''
 +
'''sudo mount -t ext4 /dev/xvdh ~/myseq/umake'''
 +
 +
'''df -sh ~/myseq/*'''
 
</code>
 
</code>
283

edits

Navigation menu