Skip to content

Commit

Permalink
add missing curly bracket when installing Rpacakges
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaopaul committed Jul 21, 2020
1 parent 0ff2dbd commit 8dfb8e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions scripts/downstream.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ wait

## go analysis
if [ "$RUN_GO" = "TRUE" ]; then
${curr_dir}/runGO.sh ${OUTPUT_DIR}/downstream_analysis/${PEAK_CALLER}/${CELL_CALLER}/differential_accessible_features_${group1}_vs_${group2}.txt $2 $3 &
${curr_dir}/runGO.sh ${OUTPUT_DIR}/downstream_analysis/${PEAK_CALLER}/${CELL_CALLER}/differential_accessible_features_${group1}_vs_${group2}.txt $2 $3 &
fi

if [ "$RUN_Cicero" = "TRUE" ]; then
${curr_dir}/runCicero.sh $seurat_obj $2 $3 &
fi

wait

## footprinting analysis
Expand Down
2 changes: 1 addition & 1 deletion scripts/install/install_Rpackages.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
if(!require(BiocManager)){
install.packages('BiocManager')
}
if(packageVersion("BiocManager")<"1.30.10")
if(packageVersion("BiocManager")<"1.30.10"){
install.packages('BiocManager')
}

Expand Down

0 comments on commit 8dfb8e8

Please sign in to comment.