This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Uses the http://textbelt.com/ API to send a text message. | |
# The PHONE environment variable must be set, e.g., in your .bashrc., e.g. | |
# export PHONE=1234567890 | |
# Usage: txt "<a text message to send>" | |
# Example 1 | |
# When long_running_command is done successfully, this command |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# CONF | |
DBG=true | |
[email protected] | |
RELOG_PASSW=xxxxxxxxxxxxxxx | |
# END CONF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#http://samtools.sourceforge.net/mpileup.shtml | |
SAMDIR=/usr/local/package/samtools-0.1.18 | |
SAMTOOLS=$(SAMDIR)/samtools | |
BCFTOOLS=$(SAMDIR)/bcftools/bcftools | |
BWA=/usr/local/package/bwa-0.6.1/bwa | |
REF=chr22.fa | |
.INTERMEDIATE : align.sam random_1.sai random_2.sai align.bam variations.bcf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=Navigating= | |
visit('/projects') | |
visit(post_comments_path(post)) | |
=Clicking links and buttons= | |
click_link('id-of-link') | |
click_link('Link Text') | |
click_button('Save') | |
click('Link Text') # Click either a link or a button | |
click('Button Value') |