Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Sep 2, 2020
1 parent fc47ea9 commit 3305261
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/process/process_all.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ Local Data
Local Reads Prep
----------------

Prepare custom read data as eager tsv.
Prepare local read data as eager tsv.

**shell**::

biosampleColumn=1
inTSV=!{params.eager_tsv}
outTSV=`basename ${inTSV%.*}.txt`
tail -n+2 !{custom_tsv_eager} | cut -f ${biosampleColumn} | sort | uniq > ${outTSV}
tail -n+2 !{local_tsv_eager} | cut -f ${biosampleColumn} | sort | uniq > ${outTSV}

Local Assembly Prep
-------------------

Prepare custom assembly data as file list.
Prepare local assembly data as file list.


Database
Expand Down Expand Up @@ -137,7 +137,6 @@ eager_tsv tsv
**shell**::

# Select the Genbank Assemblies
echo "!{params.sqlite_select_command_asm}"
if [[ "!{params.sqlite_select_command_asm}" != "false" ]]; then
sqlite3 !{sqlite} "!{params.sqlite_select_command_asm}" | \
grep . | \
Expand Down

0 comments on commit 3305261

Please sign in to comment.