[cfljam@genome3 ~]$ cd /workspace2/genome_analysis/plant/Actinidia/chinensis/20Monkeys/
[cfljam@genome3 20Monkeys]$ pwd
/workspace2/genome_analysis/plant/Actinidia/chinensis/20Monkeys
[cfljam@genome3 20Monkeys]$ ls
Fastqc Haplotyping mappedtoHY README.md Reads RedOrDead SexSexSex temp_opt
[cfljam@genome3 20Monkeys]$ cat > README.md
This file contains hidden or 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
| DF.drop([Y for Y in DF.columns if re.compile('Unnamed*').match(Y)],1) |
This file contains hidden or 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
| zcat my_reference.fa.gz | awk -v OFS="\t" '/^>/{print substr($1,2),$2}' > my.genome |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
| hardstatus alwayslastline | |
| hardstatus string '%{= kG}[ %{G}%H %{g}][%= %{=kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%=%{g}][%{B}%Y-%m-%d %{W}%c %{g}]' | |
| defscrollback 4242 |
This file contains hidden or 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/sh | |
| sudo apt-get -y update | |
| sudo apt-get -y install curl build-essential python-dev python-pip python-numpy python-scipy git | |
| sudo pip install --upgrade distribute | |
| sudo pip install --upgrade ipython[all] | |
| sudo pip install --upgrade pyzmq jinja2 numpy tornado pandas scipy | |
| ## Primer design pre-requisites | |
| sudo pip install Biopython | |
| sudo pip install bcbio-gff |
This file contains hidden or 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
| #### Place this in $HOME/.vagrant.d/ or append to the Vagrantfile there | |
| ## eidting the proxy user,pwd, address and port accordingly | |
| Vagrant.configure('2') do |config| | |
| if Vagrant.has_plugin?("vagrant-proxyconf") | |
| config.proxy.http = "http://proxy.my_org.com:8080" | |
| config.proxy.https = "https://proxy.my_org.com:8080" | |
| config.proxy.no_proxy = "localhost,127.0.0.1,.example.com" | |
| end | |
| end |
This file contains hidden or 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
| gsub("(.+)([A-Z])$","\\1\\L\\2",my_df$Pedigree_item, perl=TRUE) |
This file contains hidden or 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
| awk '/^>/{s=++d".fasta"} {print > s}' |