Skip to content

Commit

Permalink
Update import for Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
lfnothias authored Jan 4, 2024
1 parent f5f8eae commit c1602b4
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions src/vm-NAP_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,22 @@
import sys
import logging
import io

import os
import sys

# Get the directory where the script is located
script_dir = os.path.dirname(os.path.abspath(__file__))

# Construct paths to the custom module directories
gnps_lib_path = os.path.join(script_dir, 'gnps_postprocessing', 'lib')
src_path = os.path.join(script_dir, 'src')

# Add custom module paths
sys.path.append('gnps_postprocessing/lib')
sys.path.append('src')
# Add custom module paths to sys.path
sys.path.append(gnps_lib_path)
sys.path.append(src_path)

# Import custom modules
# Now you can import your custom modules
from gnps_download_results import *
from consolidate_structures import *
from gnps_results_postprocess import *
Expand Down

0 comments on commit c1602b4

Please sign in to comment.