Skip to content

Commit

Permalink
Changed comments for pullrequest
Browse files Browse the repository at this point in the history
  • Loading branch information
basti committed Jan 6, 2019
1 parent 571cf5f commit 6cd7e0e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bin/3.1_create_gtf/Modules/Ensembl/FTPHandling/VersionChecker.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,16 +129,16 @@ def download_currentversion_version(self, version, organism, wd, data_dir):

# Download Regulation Activity

activityfolder_local = os.path.join(targetfolder, "activity") # local Folder for Activity Data
activityfolder_remote = folder_url+"RegulatoryFeatureActivity/" # remote (ftp) folder for activity data
activityfolder_local = os.path.join(targetfolder, "activity") # local Folder for Activity Data
activityfolder_remote = folder_url+"RegulatoryFeatureActivity/" # remote (ftp) folder for activity data
os.mkdir(activityfolder_local) # Create New Folder
# Get List for all entries in activity Folder
celltypes_list = self.site_ftp.get_all_entries_from_dir(activityfolder_remote)

celltypes_list = self.site_ftp.get_all_entries_from_dir(activityfolder_remote) # Get List for all entries in activity Folder

# Iterate over Celltype List and Download in corresponding subfolder
# Iterate over celltype List and Download in corresponding subfolder

for celltype in celltypes_list:
link_local = os.pathchainfil.join(activityfolder_local, celltype)
link_local = os.path.join(activityfolder_local, celltype)
link_origin = activityfolder_remote+"/"+celltype
os.mkdir(link_local)
self.site_ftp.save_entries_to_file(link_origin, link_local)
Expand Down

0 comments on commit 6cd7e0e

Please sign in to comment.