Skip to content

Commit

Permalink
Merge pull request #3 from glrs/hotfix/update-base-dir-path
Browse files Browse the repository at this point in the history
Fix the base_dir path to lead to "projects" dir
  • Loading branch information
glrs authored Oct 14, 2024
2 parents 68aa774 + a82c849 commit 7a877b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/realms/tenx/utils/sample_file_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ def __init__(self, sample: Any) -> None:
self.config: Dict[str, Any] = sample.config

# Define sample folder structure
self.base_dir: Path = Path(self.config["10x_dir"]) / self.project_name
self.base_dir: Path = (
Path(self.config["10x_dir"]) / "projects" / self.project_name
)
self.sample_dir: Path = self.base_dir / self.sample_id
self.fastq_files_dir: Path = self.base_dir / "fastq_files"

Expand Down

0 comments on commit 7a877b3

Please sign in to comment.