Skip to content

Commit

Permalink
new file: HISTORY.md
Browse files Browse the repository at this point in the history
	modified:   bcbio.array.pbs
	modified:   bcbio.pbs
	modified:   bcbio.templates.exome.yaml
	modified:   cre.sh
	modified:   gemini.vep.refseq.sh
  • Loading branch information
naumenko-sa committed Jul 4, 2017
1 parent 1c7d639 commit a7f8cc5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- 2017-07-04: bcbio uses vep-merged, a merged cache of refseq and vep, no need to annotate with refseq anymore
2 changes: 2 additions & 0 deletions bcbio.array.pbs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

echo "START: " `date`;

hostname

module load java/1.8.0_91
project=`cat projects.txt | head -n $PBS_ARRAYID | tail -n1`

Expand Down
1 change: 1 addition & 0 deletions bcbio.pbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#PBS -l vmem=50g,mem=50g

echo "START: " `date`;
hostname

module load java/1.8.0_91

Expand Down
1 change: 1 addition & 0 deletions bcbio.templates.exome.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ details:
use_filtered: false
realign: true
recalibrate: true
mark_duplicates: true
save_diskspace: true
tools_on:
- svplots
Expand Down
3 changes: 2 additions & 1 deletion cre.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
#PBS -d .
#PBS -l vmem=20g,mem=20g


function f_cleanup
{

# better to look for project-summary than hardcode the year
# keep bam files for new samples
cd $family
result_dir=`find final -name project-summary.yaml | sed s/"\/project-summary.yaml"//`
if [ -d $result_dirt ];
if [ -d $result_dir ];
then
mv $result_dir/* .
mv final/*/*.bam .
Expand Down
4 changes: 2 additions & 2 deletions gemini.vep.refseq.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ fi

bname=`echo $vcf | sed s/.vcf.gz//`

unset PERL5LIB && export PATH=/hpf/largeprojects/ccmbio/naumenko/tools/bcbio/anaconda/bin:$PATH && /home/naumenko/work/tools/bcbio/anaconda/bin/variant_effect_predictor.pl --vcf -o stdout \
-i $vcf --species homo_sapiens_refseq --no_stats --cache --offline --dir /hpf/largeprojects/ccmbio/naumenko/tools/bcbio/genomes/Hsapiens/GRCh37/vep --symbol --numbers --biotype --total_length \
unset PERL5LIB && export PATH=/hpf/largeprojects/ccmbio/naumenko/tools/bcbio/anaconda/bin:$PATH && /home/naumenko/work/tools/bcbio/anaconda/bin/vep --vcf -o stdout \
-i $vcf --species homo_sapiens_merged --no_stats --cache --offline --dir /hpf/largeprojects/ccmbio/naumenko/tools/bcbio/genomes/Hsapiens/GRCh37/vep --symbol --numbers --biotype --total_length \
--canonical --gene_phenotype --ccds --fields Consequence,Codons,Amino_acids,Gene,SYMBOL,Feature,EXON,PolyPhen,SIFT,Protein_position,BIOTYPE,CANONICAL,CCDS,HGVSc,HGVSp \
--plugin LoF,human_ancestor_fa:/hpf/largeprojects/ccmbio/naumenko/tools/bcbio/genomes/Hsapiens/GRCh37/variation/human_ancestor.fa.gz --sift b --polyphen b --hgvs --shift_hgvs 1 \
--fasta /hpf/largeprojects/ccmbio/naumenko/tools/bcbio/genomes/Hsapiens/GRCh37/seq/GRCh37.fa \
Expand Down

0 comments on commit a7f8cc5

Please sign in to comment.