Skip to content
Open
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
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1.7.4:
* required python is now >=3.10 for PyTables compatibility
* replace deprecated pkg_resources
* clarify maskfile option in genomedata-load

1.7.3:
* replace deprecated .isdir and .isfile path API uses with is_dir and is_file
Expand Down
5 changes: 3 additions & 2 deletions genomedata/load_genomedata.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,9 @@ def parse_cmdline(cmdline):
help="Add data from FILE as the track NAME,"
" such as: -t signal=signal.wig")
input_data.add_argument("-m", "--maskfile",
help='A BED file containing regions to mask out'
' from tracks before loading')
help='A BED file designating regions for '
'exclusive data retention across all tracks '
'before loading.')

input_data_ex = input_data.add_mutually_exclusive_group()
input_data_ex.add_argument("--assembly", action="store_const",
Expand Down