Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the base_dir path to lead to "projects" dir #3

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading