Skip to content

Commit

Permalink
Update Qleverfile.pubchem
Browse files Browse the repository at this point in the history
Fixing error:
```
qlever index --system=native

To enable autocompletion, run the following command, and consider adding it to your `.bashrc` or `.zshrc`:

eval "$(register-python-argcomplete qlever)" && export QLEVER_ARGCOMPLETE_ENABLED=1


Command: index

echo '{ "languages-internal": [], "prefixes-external": [""], "ascii-prefixes-only": false, "num-triples-per-batch": 1000000 }' > pubchem.settings.json
ulimit -Sn 1048576; zcat pubchem.additional-ontologies.nt.gz nt.2024-02-03/*.nt.gz | IndexBuilderMain -F ttl -f - -i pubchem -s pubchem.settings.json --stxxl-memory 10G | tee pubchem.index-log.txt

No file matching "pubchem.additional-ontologies.nt.gz" found

Did you call `qlever get-data`? If you did, check GET_DATA_CMD and INPUT_FILES in the QLeverfile
```
  • Loading branch information
eltonfss authored Jun 19, 2024
1 parent 8776409 commit f07df59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qlever/Qleverfiles/Qleverfile.pubchem
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ GET_DATA_CMD = mkdir -p ttl.${DATE} && mkdir -p nt.${DATE} && ${MAKE_GET_DA
DESCRIPTION = PubChem RDF from ${GET_DATA_URL}, version ${DATE} (all folders except nbr2d and nbr3d)

[index]
INPUT_FILES = pubchem.additional-ontologies.nt.gz nt.${DATE}/*.nt.gz
INPUT_FILES = nt.${DATE}/*.nt.gz
CAT_INPUT_FILES = zcat ${INPUT_FILES}
SETTINGS_JSON = { "languages-internal": [], "prefixes-external": [""], "ascii-prefixes-only": false, "num-triples-per-batch": 1000000 }
STXXL_MEMORY = 10G
Expand Down

0 comments on commit f07df59

Please sign in to comment.