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

Remove gtf header #13

Merged
merged 5 commits into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ LABEL maintainer="Máté Balajti <[email protected]>"
# COPY THE YAML & INSTALL SOFTWARE WITH CONDA
WORKDIR /usr/src/app
COPY ./ ./
RUN conda env create --file environment.yml
RUN conda env create --file environment.yml \
&& conda clean --all

# VARIABLES
ARG WORKDIR="/home/USER"
Expand Down
8 changes: 8 additions & 0 deletions environment-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ channels:
- conda-forge
- bioconda
dependencies:
- pip>=20.2.3
- biopython>=1.78
- polars==0.16.17
- gtfparse
- numpy>=1.23.3
- pandas>=1.4.4
- python>=3.6, <=3.10
- pyarrow
- black
- coverage
- flake8
Expand Down
2 changes: 1 addition & 1 deletion scRNAsim_toolz/sequence_extractor/pre_bedtools.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,5 @@ def pre_bedtools_mode(args):
args.output_bed_file = "default_output.bed"

pd.concat([gtf_df_pos, gtf_df_neg]).to_csv(
args.output_bed_file, sep="\t", index=False
args.output_bed_file, sep="\t", index=False, header=False
) # gtf_df_pos and gtf_df_neg must be dataframes
Loading