You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ctakes.apache.org by se...@apache.org on 2023/02/08 15:21:54 UTC

[ctakes] branch main updated: Improved comments

This is an automated email from the ASF dual-hosted git repository.

seanfinan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/ctakes.git


The following commit(s) were added to refs/heads/main by this push:
     new c674457  Improved comments
c674457 is described below

commit c674457a84439d700aa6ddbe731ea44cc8eefe99
Author: Sean Finan <se...@childrens.harvard.edu>
AuthorDate: Wed Feb 8 10:21:42 2023 -0500

    Improved comments
---
 .../resources/org/apache/ctakes/pbj/pipeline/PbjStarter.piper     | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/ctakes-pbj/src/user/resources/org/apache/ctakes/pbj/pipeline/PbjStarter.piper b/ctakes-pbj/src/user/resources/org/apache/ctakes/pbj/pipeline/PbjStarter.piper
index 20591f5..ef91977 100644
--- a/ctakes-pbj/src/user/resources/org/apache/ctakes/pbj/pipeline/PbjStarter.piper
+++ b/ctakes-pbj/src/user/resources/org/apache/ctakes/pbj/pipeline/PbjStarter.piper
@@ -7,16 +7,19 @@
 #  It will pause for 5 seconds to allow artemis to fully launch.
 #
 #  This piper will then pip the python package requirements for ctakes-pbj
-#  in an environment pointed to by the -d parameter on the command line.
+#  in an environment pointed to by the -v parameter on the command line.
+#
+#  To skip the step of runnning a pip of ctakes-pbj, set --pipPbj to "no"
 #
 
 // Set the command line parameter -a to accept the directory of the Artemis broker.
 cli ArtemisBroker=a
 // Set the command line parameter -v to accept the directory of the Python environment.
 cli VirtualEnv=v
-// Set the command line parameter --pipPbj to yes or no.
+// Set the command line parameter --pipPbj to 'no' to avoid a pip of pbj at the beginning of the run.
 cli PipPbj=pipPbj
 
+
 // Write nice big banners when ctakes starts and finishes.
 set WriteBanner=yes
 
@@ -33,7 +36,6 @@ add ArtemisStarter Pause=5
 //
 // pip the dependency packages in case your environment doesn't have them or needs an update.
 //
-//add PythonRunner Command="-m pip install resources/org/apache/ctakes/pbj/ctakes_pbj_py/" Wait=yes
 add PbjPipper
 
 // Add the Finished Logger for some run statistics.