Skip to content
Open
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e376b7e
update options and saving for encoders
soulios Jan 1, 2024
6f7611e
only argparse
soulios Mar 6, 2024
16a24f4
flaked and fixed predictgnn arg
soulios Mar 6, 2024
774b0a1
add json
soulios Mar 6, 2024
11fb829
remove comma
soulios Mar 6, 2024
add3993
final fix
soulios Mar 6, 2024
fa33f2f
final fix
soulios Mar 6, 2024
1f59fe9
final fix
soulios Mar 6, 2024
00fa012
convert fix
soulios Mar 7, 2024
ace62d3
Update dfpl/options.py
soulios Mar 8, 2024
8a1b334
Apply suggestions from code review
soulios Mar 8, 2024
3c92b98
edited help in args
soulios Mar 8, 2024
40e6b0b
flaked and blacked
soulios Mar 8, 2024
c03a32e
removed metavar from args with choices
soulios Mar 11, 2024
ebaaaca
make literals optionals for None
soulios Mar 11, 2024
d6090a9
applied black
soulios Mar 11, 2024
cb3fa01
rename some variables
bernt-matthias Apr 9, 2024
460c482
Merge branch 'argparse' of https://github.com/soulios/deepFPlearn int…
bernt-matthias Apr 9, 2024
e87be1b
fixup
bernt-matthias Apr 9, 2024
8b0af64
removed paths from default args and fixed creating args from json and…
soulios Jul 11, 2024
31f48a4
Merge branch 'master' of https://github.com/yigbt/deepFPlearn
soulios Jul 11, 2024
efef88a
only argparse
soulios Mar 6, 2024
ac0db5d
rename some variables
bernt-matthias Apr 9, 2024
13a1626
flaked and fixed predictgnn arg
soulios Mar 6, 2024
c3a5da2
add json
soulios Mar 6, 2024
2577f10
remove comma
soulios Mar 6, 2024
96f59b4
final fix
soulios Mar 6, 2024
01942ba
final fix
soulios Mar 6, 2024
056110e
final fix
soulios Mar 6, 2024
630f6d1
convert fix
soulios Mar 7, 2024
4f418cc
Update dfpl/options.py
soulios Mar 8, 2024
dd34bca
Apply suggestions from code review
soulios Mar 8, 2024
83361ee
edited help in args
soulios Mar 8, 2024
d165644
removed metavar from args with choices
soulios Mar 11, 2024
3d5ae80
make literals optionals for None
soulios Mar 11, 2024
e2ceb28
applied black
soulios Mar 11, 2024
f748c2f
removed paths from default args and fixed creating args from json and…
soulios Jul 11, 2024
a03642a
Merge branch 'master' into argparse
soulios Jul 11, 2024
51453b5
rebased argparse
soulios Jul 11, 2024
4cdd5a8
merged argparse
soulios Jul 11, 2024
7348fd0
blacked and flaked
soulios Jul 11, 2024
40be7bb
trying fix for cmd and json args
soulios Jul 11, 2024
35a63ee
changed path for input file
soulios Jul 11, 2024
1ba017c
changed path for input file
soulios Jul 11, 2024
11e808c
changed path for input file
soulios Jul 11, 2024
4989421
changed path for input file
soulios Jul 11, 2024
8cc13b4
changed path for test file in pr.yml
soulios Jul 11, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
fi

dfpl convert -f tests/data
if [ "$(find tests/data \(-name '*.csv'\ -o -name '*.tsv' \) | wc -l)" -ne "$(find tests/data -name '*.pkl' | wc -l)" ]; then
if [ "$(find tests/data \(-name '*.csv' -o -name '*.tsv' \) | wc -l)" -ne "$(find tests/data -name '*.pkl' | wc -l)" ]; then
echo "not all csv files are converted to pickle ones" >&2
exit 1
fi
Expand Down