forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request galaxyproject#3461 from mvdbeek/ToolRequirements
Implement ToolRequirements class
- Loading branch information
Showing
10 changed files
with
193 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
""" | ||
Ordered set implementation from https://code.activestate.com/recipes/576694/ | ||
""" | ||
import collections | ||
|
||
|
||
class OrderedSet(collections.MutableSet): | ||
def __init__(self, iterable=None): | ||
self.end = end = [] | ||
end += [None, end, end] # sentinel node for doubly linked list | ||
self.map = {} # key --> [key, prev, next] | ||
if iterable is not None: | ||
self |= iterable | ||
|
||
def __len__(self): | ||
return len(self.map) | ||
|
||
def __contains__(self, key): | ||
return key in self.map | ||
|
||
def add(self, key): | ||
if key not in self.map: | ||
end = self.end | ||
curr = end[1] | ||
curr[2] = end[1] = self.map[key] = [key, curr, end] | ||
|
||
def discard(self, key): | ||
if key in self.map: | ||
key, prev, next = self.map.pop(key) | ||
prev[2] = next | ||
next[1] = prev | ||
|
||
def __iter__(self): | ||
end = self.end | ||
curr = end[2] | ||
while curr is not end: | ||
yield curr[0] | ||
curr = curr[2] | ||
|
||
def __reversed__(self): | ||
end = self.end | ||
curr = end[1] | ||
while curr is not end: | ||
yield curr[0] | ||
curr = curr[1] | ||
|
||
def pop(self, last=True): | ||
if not self: | ||
raise KeyError('set is empty') | ||
key = self.end[1][0] if last else self.end[2][0] | ||
self.discard(key) | ||
return key | ||
|
||
def __repr__(self): | ||
if not self: | ||
return '%s()' % (self.__class__.__name__,) | ||
return '%s(%r)' % (self.__class__.__name__, list(self)) | ||
|
||
def __eq__(self, other): | ||
if isinstance(other, OrderedSet): | ||
return len(self) == len(other) and list(self) == list(other) | ||
return set(self) == set(other) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters