Skip to content

Commit

Permalink
removing (for now) the processing skipping options
Browse files Browse the repository at this point in the history
  • Loading branch information
scottcain committed Aug 26, 2021
1 parent 916a999 commit 401221c
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions single_species_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ then
fi
fi

if [ -z "$UPDATE_ONLY" ]
then
SKIPFLATFILE=" --skipflatfile "
ONLYTRACKLIST=" --onlytracklist "
else
SLIPFLATFILE=" "
ONLYTRACKLIST=" "
fi
#if [ -z "$UPDATE_ONLY" ]
#then
# SKIPFLATFILE=" --skipflatfile "
# ONLYTRACKLIST=" --onlytracklist "
#else
# SLIPFLATFILE=" "
# ONLYTRACKLIST=" "
#fi

MAKEPATH=/website-genome-browsers/jbrowse/bin/make_jbrowse.pl

Expand All @@ -69,7 +69,8 @@ LOGFILE=$SPECIES
LOGFILE+=".log"

#this is by far the longest running portion of the script (typically a few hours)
$MAKEPATH $SKIPFLATFILE --conf $CONFPATH --quiet --species $SPECIES 2>1 | grep -v "Deep recursion"; mv 1 $LOGFILE
#$MAKEPATH $SKIPFLATFILE --conf $CONFPATH --quiet --species $SPECIES 2>1 | grep -v "Deep recursion"; mv 1 $LOGFILE
$MAKEPATH --conf $CONFPATH --quiet --species $SPECIES 2>1 | grep -v "Deep recursion"; mv 1 $LOGFILE

INLINEINCLUDEPATH=/website-genome-browsers/jbrowse/bin/inline_includes.pl

Expand All @@ -87,7 +88,8 @@ UPLOADTOS3PATH=/agr_jbrowse_config/scripts/upload_to_S3.pl
REMOTEPATH="MOD-jbrowses/WormBase/WS$RELEASE/$SPECIES"
#REMOTEPATH="test/WS$RELEASE/$SPECIES"

$UPLOADTOS3PATH $ONLYTRACKLIST --bucket $AWSBUCKET --local "$SPECIES/" --remote $REMOTEPATH --AWSACCESS $AWSACCESS --AWSSECRET $AWSSECRET
#$UPLOADTOS3PATH $ONLYTRACKLIST --bucket $AWSBUCKET --local "$SPECIES/" --remote $REMOTEPATH --AWSACCESS $AWSACCESS --AWSSECRET $AWSSECRET
$UPLOADTOS3PATH --bucket $AWSBUCKET --local "$SPECIES/" --remote $REMOTEPATH --AWSACCESS $AWSACCESS --AWSSECRET $AWSSECRET



0 comments on commit 401221c

Please sign in to comment.