You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
loading previous manifest from 'entire.2022-04-13.sqlmf.new'
loaded 4756209 rows with 1585403 distinct sig files from 'entire.2022-04-13.sqlmf.new'
Loading filenames from ../irber-genome-sigs.txt.apr20.
Loaded 33 manifest rows from files in '../irber-genome-sigs.txt.apr20'
merging previous rows into current.
saved 4756242 manifest rows to 'entire.2022-04-20.sqlmf'
Command being timed: "bash ../update-script.txt"
User time (seconds): 169.60
System time (seconds): 20.85
Percent of CPU this job got: 80%
Elapsed (wall clock) time (h:mm:ss or m:ss): 3:56.12
Average shared text size (kbytes): 0
Average unshared data size (kbytes): 0
Average stack size (kbytes): 0
Average total size (kbytes): 0
Maximum resident set size (kbytes): 6748292
so about 4 minutes and under 7 GB of RAM.
The text was updated successfully, but these errors were encountered:
FYI for dib-lab folks, I've made a central spot on farm: /group/ctbrowngrp/sourmash-db/wort-manifests and included an update script using the code above. Note this version automatically adds a date to the new filenames.
Notes:
downloading new wort signatures to farm is somewhat manual at the moment, check with luiz :)
It's best to update the previous_manifest in the script to the latest version before running
NOW=$(date +"%Y-%m-%d")
updated_siglist=$NOW.wort.sigs.txt
previous_manifest=./entire.2022-04-26.sqlmf
updated_manifest=./$NOW.wort.sqlmf
# first, get updated list of wort signatures
find /group/ctbrowngrp/irber/data/wort-data/wort-genomes/sigs \
-type f > $updated_siglist
#Now, build a manifest from this list of files
python /group/ctbrowngrp/sourmash-db/database-examples/sigs-to-manifest.py \
--previous $previous_manifest --merge -F sql \
-o $updated_manifest $updated_siglist
chmod a-w $updated_manifest
since I forgot most of this in the intervening week, I'm writing it down here ;).
Uses code in #1808.
in
~ctbrown/scratch/fromfile/test.apr20
, run:time -v
shows:so about 4 minutes and under 7 GB of RAM.
The text was updated successfully, but these errors were encountered: